Skip to content

Commit b2835c8

Browse files
committed
updated actions 2
1 parent a517383 commit b2835c8

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/python-install-and-test-on-linux-always.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ jobs:
2222
- name: Install dependencies
2323
run: |
2424
python -m pip install --upgrade pip
25-
pip install . --group dev
25+
pip install .
26+
pip install --group dev
2627
- name: Test with pytest
2728
run: |
2829
coverage run -m pytest -v -s

.github/workflows/python-package-install-macos-check.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ jobs:
2727
- name: Install dependencies
2828
run: |
2929
python -m pip install --upgrade pip
30-
pip install . --group dev
30+
pip install .
31+
pip install --group dev
3132
- name: Test with pytest
3233
run: |
3334
coverage run -m pytest -v -s

.github/workflows/python-package-install-windows-check.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ jobs:
2727
- name: Install dependencies
2828
run: |
2929
python -m pip install --upgrade pip
30-
pip install . --group dev
30+
pip install .
31+
pip install --group dev
3132
- name: Test with pytest
3233
run: |
3334
coverage run -m pytest -v -s

0 commit comments

Comments
 (0)