Skip to content

Commit

Permalink
Merge pull request #313 from neutrinoceros/tst/cleanup_bleeding_edge
Browse files Browse the repository at this point in the history
TST: don't install unused scikit-image in bleeding-edge CI
  • Loading branch information
neutrinoceros authored Apr 6, 2024
2 parents 24c1750 + bc3ccd7 commit a108e90
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/bleeding-edge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ name: CI (bleeding-edge)
# - numpy
# - matplotlib,
# - scipy
# - scikit-image

on:
push:
Expand Down Expand Up @@ -33,14 +32,14 @@ jobs:
- name: Build
run: |
python -m pip install --upgrade pip
python -m pip install numpy matplotlib scipy scikit-image --pre \
python -m pip install numpy matplotlib scipy --pre \
--only-binary ":all:" \
--extra-index \
https://pypi.anaconda.org/scientific-python-nightly-wheels/simple
python -m pip install .
python -m pip install --requirement requirements/tests.txt
- run: python -m pip list

- name: Run pytest
run: |
python -m pip freeze
pytest --color=yes
run: pytest --color=yes

0 comments on commit a108e90

Please sign in to comment.