diff --git a/.github/workflows/conda-deployment.yml b/.github/workflows/conda-deployment.yml index 9c02b6d4..6d08d0d3 100644 --- a/.github/workflows/conda-deployment.yml +++ b/.github/workflows/conda-deployment.yml @@ -39,7 +39,7 @@ jobs: conda config --show-sources conda config --show pip install . - pytest -sv -m "not plot" + pytest -sv -m "not plot" --ignore-glob="*plot*.py" Optional-packages: runs-on: ${{ matrix.os }} diff --git a/.github/workflows/pypi-deployment.yml b/.github/workflows/pypi-deployment.yml index 4865a83c..fab4ff4e 100644 --- a/.github/workflows/pypi-deployment.yml +++ b/.github/workflows/pypi-deployment.yml @@ -37,7 +37,7 @@ jobs: - name: Generate coverage report run: | - python -m pytest -sv -m "not plot" + pytest -sv -m "not plot" --ignore-glob="*plot*.py" - name: Upload coverage reports to Codecov with GitHub Action uses: codecov/codecov-action@v3