diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 91b114a9..839129d7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,9 +51,8 @@ jobs: run: | python -m pip install --upgrade pip pip install poetry - poetry export --with dev > requirements.txt - pip install -r requirements.txt + poetry install --with dev - name: Test with pytest run: | - pytest --cov=pygam - codecov + poetry run pytest --cov=pygam + poetry run codecov