From 938ea745d8767aba81455c919418d48908a85cfc Mon Sep 17 00:00:00 2001 From: Andrew Quirke Date: Tue, 12 Nov 2024 09:35:29 -0500 Subject: [PATCH] debugging github runner --- .github/workflows/test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b7bb5363..852c91f4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -58,7 +58,10 @@ jobs: run: python -m pip install --no-deps --no-build-isolation -e . -v # `-e` required for correct `coverage` run. - name: Run tests - run: pytest + run: | + export PATH="$CONDA_PREFIX/Library/bin:$PATH" + echo "Current PATH: $PATH" + pytest - name: Test CLI run: graphium --help