From 92dd3740ec31045abc86a955626deec8ab8be0bb Mon Sep 17 00:00:00 2001 From: Steven Murray Date: Wed, 11 Sep 2024 19:12:16 +0200 Subject: [PATCH] ci: try better self-hosted mamba env --- .github/workflows/test_suite.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test_suite.yaml b/.github/workflows/test_suite.yaml index 8f472e3..7f12519 100644 --- a/.github/workflows/test_suite.yaml +++ b/.github/workflows/test_suite.yaml @@ -88,6 +88,8 @@ jobs: - name: Run Tests run: | + source ~/.bashrc + micromamba activate testenv python -m pytest -k "gpu" --cov=matvis --cov-config=.coveragerc --cov-report xml:./coverage.xml --durations=25 --log-cli-level=INFO - name: Upload coverage report