Skip to content

Commit

Permalink
Remove Sphinx build step from "pytest" CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
khaeru committed Nov 21, 2023
1 parent 3f99fc4 commit a8819d1
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -127,14 +127,6 @@ jobs:
- name: Run test suite using pytest
run: pytest ixmp -m "not performance" --verbose -rA --cov-report=xml --color=yes

- name: Test documentation build using Sphinx
env:
# For pull_request triggers, GitHub creates a temporary merge commit
# with a hash that does not match the head of the branch. Tell it which
# branch to use.
SPHINXOPTS: -D linkcode_github_remote_head=${{ github.head_ref }}
run: make --directory=doc html

- name: Upload test coverage to Codecov.io
uses: codecov/codecov-action@v3

Expand All @@ -146,6 +138,8 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.x"

- name: Force recreation of pre-commit virtual environment for mypy
if: github.event_name == 'schedule'
Expand Down

0 comments on commit a8819d1

Please sign in to comment.