Skip to content

Commit 1a8fee6

Browse files
committed
removing min-requirements; changing orders in GA pydra testing - installing tests requirements first
1 parent 39354c4 commit 1a8fee6

File tree

3 files changed

+6
-35
lines changed

3 files changed

+6
-35
lines changed

.github/workflows/testpydra.yml

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
matrix:
1313
os: [macos-latest, ubuntu-latest, windows-latest]
1414
python-version: [3.7, 3.8]
15-
install: [min-req, install, develop, wheel]
15+
install: [install, develop, wheel]
1616
fail-fast: false
1717
runs-on: ${{ matrix.os }}
1818

@@ -29,9 +29,10 @@ jobs:
2929
run: python -m pip install --upgrade pip setuptools
3030

3131

32-
- name: Install dependencies (min-requirements.txt)
33-
if: matrix.install == 'min-req'
34-
run: pip install -r min-requirements.txt
32+
- name: Install Pydra tests dependencies (develop or setup.py install)
33+
if: matrix.install == 'develop' || matrix.install == 'install'
34+
run: pip install ".[test]"
35+
3536

3637
- name: Install dependencies (setup.py install)
3738
if: matrix.install == 'install'
@@ -44,15 +45,7 @@ jobs:
4445
pip install dist/*.whl
4546
4647
47-
- name: Install Pydra (min-requirements.txt or setup.py install)
48-
if: matrix.install == 'min-req' || matrix.install == 'install'
49-
run: pip install ".[test]"
50-
51-
- name: Install Pydra (setup.py develop)
52-
if: matrix.install == 'develop'
53-
run: pip install -e ".[test]"
54-
55-
- name: Install Pydra (wheel)
48+
- name: Install Pydra tests dependencies (wheel)
5649
if: matrix.install == 'wheel'
5750
run: pip install "$( ls dist/pydra*.whl )[test]"
5851

min-requirements.txt

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

tools/update_min_requirements.py

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

0 commit comments

Comments
 (0)