Skip to content

Commit d44403b

Browse files
committed
Remove poetry shell from CI
1 parent 96c7d6c commit d44403b

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.circleci/config.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,11 @@ jobs:
1818
name: run tests
1919
command: |
2020
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
21+
poetry run black . --check
22+
poetry run isort
23+
poetry run safety check --json > test-reports/safety/results.json
24+
poetry run mypy openapi_python_client --junit-xml=test-reports/mypy/results.xml
25+
poetry run pytest --junitxml=test-reports/pytest/results.xml
2726
- store_test_results:
2827
path: test-reports
2928
- run:

0 commit comments

Comments
 (0)