We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bdf719 commit 5b27b23Copy full SHA for 5b27b23
.github/workflows/pyaleph-ci.yml
@@ -53,6 +53,9 @@ jobs:
53
- name: Check types
54
run: |
55
mypy src/
56
+ - name: Check types in tests
57
+ run: |
58
+ mypy tests/
59
- name: Run unit tests
60
61
pytest -v .
mypy.ini
@@ -5,6 +5,8 @@ python_version = 3.8
5
6
mypy_path = src
7
8
+exclude = conftest.py
9
+
10
11
show_column_numbers = True
12
0 commit comments