From 3fa2dfc1aa0b90bbcc3cf2ac591f2b86a70de695 Mon Sep 17 00:00:00 2001 From: Marvin Kastner Date: Fri, 2 Aug 2024 17:40:13 +0200 Subject: [PATCH] Try fix pillow issue in unittest --- .github/workflows/installation-from-remote.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/installation-from-remote.yaml b/.github/workflows/installation-from-remote.yaml index 44cb46d..85939fd 100644 --- a/.github/workflows/installation-from-remote.yaml +++ b/.github/workflows/installation-from-remote.yaml @@ -29,13 +29,15 @@ jobs: - name: Install ConFlowGen run: | + conda info + conda update conda conda info conda create -n test-install-conflowgen -c conda-forge conflowgen pytest - name: Prepare tests run: | conda activate test-install-conflowgen - conda install pillow>=9.0 + conda install -c conda-forge pillow>=9.0 - name: Run tests run: | @@ -66,6 +68,8 @@ jobs: conda init bash eval "$(conda shell.bash hook)" conda info + conda update conda + conda info conda activate base conda create -n test-install-conflowgen -c conda-forge conflowgen pytest