File tree Expand file tree Collapse file tree 2 files changed +5
-23
lines changed
Expand file tree Collapse file tree 2 files changed +5
-23
lines changed Original file line number Diff line number Diff 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
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments