Skip to content

Commit

Permalink
Revert "Docs should only run unit tests"
Browse files Browse the repository at this point in the history
This reverts commit bf6fa47.
  • Loading branch information
lotif committed Mar 7, 2024
1 parent bf6fa47 commit b1f0134
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 florist/tests/unit && coverage xml && coverage report -m
cd .. && coverage run -m pytest -m "not integration_test" && coverage xml && coverage report -m
# - name: Upload coverage to Codecov
# uses: Wandalen/[email protected]
# with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 florist/tests/unit && coverage xml && coverage report -m
cd .. && coverage run -m pytest -m "not integration_test" && coverage xml && coverage report -m
# - name: Upload coverage to Codecov
# uses: Wandalen/[email protected]
# with:
Expand Down

0 comments on commit b1f0134

Please sign in to comment.