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 738e955 commit 0c7c05bCopy full SHA for 0c7c05b
.circleci/config.yml
@@ -22,11 +22,14 @@ jobs:
22
name: Flake8 Lint Check # Uses setup.cfg for configuration
23
command: |
24
poetry run flake8 . --count --statistics
25
- # TODO: fix pylint. and add a mypy check.
26
- # - run:
27
- # name: Pylint Lint Check # Uses .pylintrc for configuration
28
- # command: |
29
- # pylint scaleapi
+ - run:
+ name: Pylint Lint Check # Uses .pylintrc for configuration
+ command: |
+ poetry pylint nucleus
+ - run :
30
+ name: MyPy typing check
31
32
+ poetry run mypy --ignore-missing-imports nucleus
33
- run:
34
name: Pytest Test Cases
35
command: | # Run test suite, uses SCALE_TEST_API_KEY env variable
0 commit comments