Skip to content

Commit 587e03d

Browse files
committed
added strict mypy checking
1 parent a463ebb commit 587e03d

File tree

9 files changed

+435
-18
lines changed

9 files changed

+435
-18
lines changed

.github/workflows/functional_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
pip install -r requirements.txt
2323
2424
- name: Run mypy
25-
run: mypy src
25+
run: mypy src --strict
2626

2727
- name: Run Linter
2828
run: ruff check --output-format=github src

.vscode/launch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
"console": "integratedTerminal",
1313
"justMyCode": true,
1414
"cwd": "${workspaceFolder}",
15-
"args": ["--ratings"]
15+
// "args": ["--ratings"]
1616
// "args": ["--all-colleges"]
1717
// "args": ["--db"]
1818
// "args": ["--ratings", "--db", "--all-colleges"]
19-
// "args": ["--ratings", "--db"]
19+
"args": ["--ratings", "--db"]
2020
// "args": ["--email"]
2121
}
2222
]

0 commit comments

Comments
 (0)