From d1ed819205244e4e2d9dce428af50d2d4f05a8f4 Mon Sep 17 00:00:00 2001 From: Martin Stancsics Date: Fri, 23 Jun 2023 17:33:24 +0200 Subject: [PATCH] Fix CI on Windows and macOS (#273) --- .github/workflows/macos.sh | 2 +- .github/workflows/tests-win-main.yml | 2 +- .github/workflows/tests-win.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/macos.sh b/.github/workflows/macos.sh index 34e25997..7bc16cd1 100755 --- a/.github/workflows/macos.sh +++ b/.github/workflows/macos.sh @@ -10,4 +10,4 @@ mamba env create -f /tmp/environment.yml conda activate $(yq -r .name environment.yml) export MACOSX_DEPLOYMENT_TARGET=10.9 pip install --no-use-pep517 --no-deps --disable-pip-version-check -e . -pytest tests --doctest-modules src/ +pytest tests -m "not high_memory" --doctest-modules src/ diff --git a/.github/workflows/tests-win-main.yml b/.github/workflows/tests-win-main.yml index 52f118f6..bae8e517 100644 --- a/.github/workflows/tests-win-main.yml +++ b/.github/workflows/tests-win-main.yml @@ -34,4 +34,4 @@ jobs: shell: pwsh run: | python -m pip install -e . --no-deps -vv --no-use-pep517 --disable-pip-version-check - pytest tests --doctest-modules src/ + pytest tests -m "not high_memory" --doctest-modules src/ diff --git a/.github/workflows/tests-win.yml b/.github/workflows/tests-win.yml index 8a1b2746..62447bc5 100644 --- a/.github/workflows/tests-win.yml +++ b/.github/workflows/tests-win.yml @@ -39,4 +39,4 @@ jobs: shell: pwsh run: | python -m pip install -e . --no-deps -vv --no-use-pep517 --disable-pip-version-check - pytest tests --doctest-modules src/ + pytest tests -m "not high_memory" --doctest-modules src/