From ae6e3dd724cdcb64ddd5eac07e2ff837fd85c610 Mon Sep 17 00:00:00 2001 From: dani serven Date: Sun, 11 Feb 2024 23:27:06 +0100 Subject: [PATCH] use poetry natively? --- .github/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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