diff --git a/.github/workflows/python-coverage.yml b/.github/workflows/python-coverage.yml index f1f9a1c..6ae7740 100644 --- a/.github/workflows/python-coverage.yml +++ b/.github/workflows/python-coverage.yml @@ -15,8 +15,7 @@ jobs: run: | git submodule update --init --recursive python -m pip install --upgrade pip - pip install -e . - pip install -r requirements-dev.txt + pip install -e .[dev] - name: Build coverage using pytest-cov run: | pytest --cov=src --cov-report=xml tests @@ -24,4 +23,4 @@ jobs: uses: codacy/codacy-coverage-reporter-action@v1.3.0 with: project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} - coverage-reports: coverage.xml \ No newline at end of file + coverage-reports: coverage.xml diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 5d33501..6a0203f 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -19,8 +19,7 @@ jobs: run: | git submodule update --init --recursive python -m pip install --upgrade pip - pip install . - pip install -r requirements-dev.txt + pip install .[dev] - name: Test with pytest run: | pytest tests