Skip to content

Commit 02d6d4e

Browse files
committed
Fix bad group selection in Poetry CI
1 parent 4023aea commit 02d6d4e

File tree

4 files changed

+3
-48
lines changed

4 files changed

+3
-48
lines changed

.github/workflows/test_cli.yaml

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

.github/workflows/test_cli_macos.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ jobs:
2929
run: |
3030
python -m pip install poetry
3131
poetry self add poetry-plugin-export
32-
poetry export -f requirements.txt --with dev -o requirements.txt --all-extras
33-
python -m pip install torch --index-url https://download.pytorch.org/whl/cpu
32+
poetry export -f requirements.txt --with testing -o requirements.txt --all-extras
3433
python -m pip install -r requirements.txt
3534
python -m pip install .
3635
- name: Run Tests

.github/workflows/test_cli_ubuntu.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ jobs:
2929
run: |
3030
python -m pip install poetry
3131
poetry self add poetry-plugin-export
32-
poetry export -f requirements.txt --with dev -o requirements.txt --all-extras
33-
python -m pip install torch --index-url https://download.pytorch.org/whl/cpu
32+
poetry export -f requirements.txt --with testing -o requirements.txt --all-extras
3433
python -m pip install -r requirements.txt
3534
python -m pip install .
3635
- name: Run Tests

.github/workflows/test_cli_windows.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ jobs:
2929
run: |
3030
python -m pip install poetry
3131
poetry self add poetry-plugin-export
32-
poetry export -f requirements.txt --with dev -o requirements.txt --all-extras
33-
python -m pip install torch --index-url https://download.pytorch.org/whl/cpu
32+
poetry export -f requirements.txt --with testing -o requirements.txt --all-extras
3433
python -m pip install -r requirements.txt
3534
python -m pip install .
3635
- name: Run Tests

0 commit comments

Comments
 (0)