Skip to content

Commit

Permalink
Move ConFlowGen prepareation to own block
Browse files Browse the repository at this point in the history
  • Loading branch information
1kastner authored Dec 9, 2023
1 parent 6c1b698 commit 1273b81
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/installation-from-remote.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,14 @@ jobs:
conda search conflowgen -c conda-forge --info
conda create -n test-install-conflowgen -c conda-forge conflowgen pytest
- name: Run tests
- name: Prepare tests
run: |
conda activate test-install-conflowgen
conda update conflowgen
conda install pillow=9.0.0
- name: Run tests
run: |
python -m pytest --pyargs conflowgen
build-conda-on-linux:
Expand Down Expand Up @@ -67,10 +71,14 @@ jobs:
conda activate base
conda create -n test-install-conflowgen -c conda-forge conflowgen pytest
- name: Run tests
- name: Prepare tests
run: |
eval "$(conda shell.bash hook)"
conda activate test-install-conflowgen
conda update conflowgen
- name: Run tests
run: |
python -m pytest --pyargs conflowgen
build-pip:
Expand Down

0 comments on commit 1273b81

Please sign in to comment.