From ba6772aaa1da900baa90586688368a1cdf843810 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20K=C3=BCmmmerer?= Date: Tue, 7 Nov 2023 23:12:17 +0100 Subject: [PATCH] try fixing failing github test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Matthias Kümmmerer --- .github/workflows/test-package-conda.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-package-conda.yml b/.github/workflows/test-package-conda.yml index aaa3c56..1d696df 100644 --- a/.github/workflows/test-package-conda.yml +++ b/.github/workflows/test-package-conda.yml @@ -24,10 +24,11 @@ jobs: #auto-activate-base: false channels: conda-forge - name: Conda info + # the shell setting is necessary for loading profile etc which activates the conda environment shell: bash -el {0} run: conda info - name: Conda list - shell: pwsh + shell: bash -el {0} run: conda list # - name: Set up Python # uses: actions/setup-python@v4 @@ -90,6 +91,10 @@ jobs: - name: test build and install shell: bash -el {0} run: | + conda list + echo "which python" + type python + echo "starting build" python setup.py sdist pip install dist/*.tar.gz mkdir tmp && cd tmp && python -c "import pysaliency"