Fix tests with setuptools
This commit is contained in:
parent
9fcb8da67e
commit
fecc63fc20
1 changed files with 3 additions and 1 deletions
4
.github/workflows/test.yaml
vendored
4
.github/workflows/test.yaml
vendored
|
@ -19,7 +19,9 @@ jobs:
|
|||
python-version: '3.10'
|
||||
cache: poetry
|
||||
- name: Install dependencies
|
||||
run: poetry install
|
||||
run: |
|
||||
poetry install
|
||||
poetry run pip install setuptools
|
||||
- name: Test
|
||||
run: poetry run pytest --cov=. --cov-branch --cov-report term-missing:skip-covered
|
||||
working-directory: ./src/
|
||||
|
|
Reference in a new issue