From a8819d1b8cfb987404a819acd2df1e3066718851 Mon Sep 17 00:00:00 2001 From: Paul Natsuo Kishimoto Date: Tue, 21 Nov 2023 12:37:53 +0100 Subject: [PATCH] Remove Sphinx build step from "pytest" CI workflow --- .github/workflows/pytest.yaml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index 7b8a95dbe..e6217598c 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -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 @@ -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'