From 0d2b5fc76688108d28b053a8df6e4afaf3b60946 Mon Sep 17 00:00:00 2001 From: Sejin Kim Date: Thu, 16 May 2024 13:18:41 -0400 Subject: [PATCH] this will do --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 07e3fc9c..1af08e34 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -36,12 +36,12 @@ jobs: uses: snok/install-poetry@v1 - name: Install dependencies - run: poetry install + run: poetry install --with dev - name: Test with pytest run: | # Github action runners now have 4 cores - poetry run pytest -s -v -n 4 --cov --cov-report xml:coverage-report/coverage.xml + poetry run pytest tests -s -v -n 4 --cov --cov-report xml:coverage-report/coverage.xml - name: Upload coverage report artifact to be used by Codecov # only upload if matrix.os is ubuntu-latest and matrix.python-version is 3.12