diff --git a/.github/workflows/docs_build.yml b/.github/workflows/docs_build.yml index 86f56c1d..ee5d7531 100644 --- a/.github/workflows/docs_build.yml +++ b/.github/workflows/docs_build.yml @@ -31,7 +31,7 @@ jobs: source $(poetry env info --path)/bin/activate poetry install --with docs,test cd docs && rm -rf source/reference/api/_autosummary && make html - cd .. && coverage run -m pytest -m "not integration_test" && coverage xml && coverage report -m + cd .. && coverage run -m pytest florist/tests/unit && coverage xml && coverage report -m # - name: Upload coverage to Codecov # uses: Wandalen/wretry.action@v1.4.4 # with: diff --git a/.github/workflows/docs_deploy.yml b/.github/workflows/docs_deploy.yml index 37eabc94..505418d0 100644 --- a/.github/workflows/docs_deploy.yml +++ b/.github/workflows/docs_deploy.yml @@ -36,7 +36,7 @@ jobs: source $(poetry env info --path)/bin/activate poetry install --with docs,test cd docs && rm -rf source/reference/api/_autosummary && make html - cd .. && coverage run -m pytest -m "not integration_test" && coverage xml && coverage report -m + cd .. && coverage run -m pytest florist/tests/unit && coverage xml && coverage report -m # - name: Upload coverage to Codecov # uses: Wandalen/wretry.action@v1.4.4 # with: