Skip to content

Commit 204d264

Browse files
authored
Merge pull request #71 from JecaTosovic/fix_CI
Fix CI issues with miniforge
2 parents 5472e42 + d30b195 commit 204d264

File tree

2 files changed

+5
-23
lines changed

2 files changed

+5
-23
lines changed

.github/workflows/CI.yaml

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,12 @@ jobs:
1616
uses: actions/setup-python@v5
1717
with:
1818
python-version: ${{ matrix.python-version }}
19-
- name: Create Python Environment
20-
uses: conda-incubator/setup-miniconda@v3
21-
with:
22-
python-version: ${{ matrix.python-version }}
23-
environment-file: .github/workflows/envs/environment.yml
24-
channels: conda-forge
25-
activate-environment: test
26-
show-channel-urls: true
27-
miniforge-variant: Mambaforge
28-
use-mamba: true
2919
- name: Install package
30-
shell: bash -l {0}
3120
run: |
32-
pip install -e .
21+
python -m pip install --upgrade pip
22+
python -m pip install -r requirements/requirements-test.txt
23+
python -m pip install pytest
24+
python -m pip install .
3325
- name: Test with pytest
34-
shell: bash -l {0}
3526
run: |
36-
python -m pip install pytest
37-
pytest
27+
python -m pytest

.github/workflows/envs/environment.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)