Use poetry run to activate venv

This commit is contained in:
Laurent Savaete
2020-12-21 22:44:09 +00:00
committed by Guillaume Gardey
parent f55743f63c
commit 8ddb38ed74

View File

@@ -33,10 +33,10 @@ jobs:
poetry install
- name: Check formatting with black
run: |
black --check .
poetry run black --check .
- name: Check typing annotations with mypy
run: |
mypy .
poetry run mypy .
- name: Test with pytest
run: |
pytest
poetry run pytest