From b60e6f376a9c630da23be2256635dc1568874a7e Mon Sep 17 00:00:00 2001 From: Zebedee Nicholls Date: Fri, 19 Jan 2024 15:08:32 +0100 Subject: [PATCH] Drop MAGICC tests from windows, downloading in too hard basket for now --- .github/workflows/ci.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 433b75e4..37add643 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -58,7 +58,7 @@ jobs: venv-id: "tests-${{ runner.os }}" poetry-dependency-install-flags: "--all-extras" - name: Download MAGICC non-windows - # if: runner.os != 'Windows' + if: runner.os != 'Windows' run: | mkdir -p bin/magicc/magicc-v7.5.3 wget -O "bin/magicc/magicc-v7.5.3.tar.gz" "${{ secrets.MAGICC_LINK_FROM_MAGICC_DOT_ORG }}" @@ -83,8 +83,6 @@ jobs: poetry run pytest -r a -v src tests --doctest-modules --cov=src --cov-report=term-missing --cov-report=xml - name: Run tests windows if: runner.os == 'Windows' - env: - MAGICC_EXECUTABLE_7: bin/magicc/magicc-v7.5.3/bin/magicc.exe run: | source $VENV # ensure windows will find poetry poetry run pytest -r a -v src tests --doctest-modules --cov=src --cov-report=term-missing --cov-report=xml