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 e5f6450 commit 4d2e999Copy full SHA for 4d2e999
.circleci/config.yml
@@ -86,9 +86,8 @@ jobs:
86
- run:
87
name: verify typehints
88
command: |
89
- pip install mypy
90
export PATH="/home/circleci/.local/bin:$PATH"
91
- mypy --config-file mypy.ini --python-version 3.5 ldclient/*.py testing/*.py
+ mypy --config-file mypy.ini ldclient testing
92
- store_test_results:
93
path: test-reports
94
- store_artifacts:
mypy.ini
@@ -1,3 +1,2 @@
1
[mypy]
2
-ignore_missing_imports = true
3
-python_version = 3.5
+ignore_missing_imports = true
test-requirements.txt
@@ -6,4 +6,5 @@ coverage>=4.4
6
jsonpickle==0.9.3
7
pytest-cov>=2.4.0
8
codeclimate-test-reporter>=0.2.1
9
-pytest-mypy==0.7
+pytest-mypy==0.7
10
+mypy==0.800
0 commit comments