Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions azure/azure_style.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,11 @@ jobs:
pip install wheel
pip install mypy

# Check if the local repo has a requirements.txt file and install it if present
if [[ -f "requirements.txt" ]]; then
pip install -r requirements.txt
fi

# Run mypy check (should pick up local config from mypy.ini or .mypy.ini if present)
mypy

Expand Down