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 96c7d6c commit d44403bCopy full SHA for d44403b
.circleci/config.yml
@@ -18,12 +18,11 @@ jobs:
18
name: run tests
19
command: |
20
mkdir -p test-reports/safety test-reports/mypy test-reports/pytest
21
- poetry shell
22
- black . --check
23
- isort
24
- safety check --json > test-reports/safety/results.json
25
- mypy openapi_python_client --junit-xml=test-reports/mypy/results.xml
26
- pytest --junitxml=test-reports/pytest/results.xml
+ poetry run black . --check
+ poetry run isort
+ poetry run safety check --json > test-reports/safety/results.json
+ poetry run mypy openapi_python_client --junit-xml=test-reports/mypy/results.xml
+ poetry run pytest --junitxml=test-reports/pytest/results.xml
27
- store_test_results:
28
path: test-reports
29
- run:
0 commit comments