Skip to content

Commit 176d25b

Browse files
committed
add pytest
1 parent 52a4a92 commit 176d25b

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/test-python-macos.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
with:
1717
python-version: ${{ matrix.python }}
1818

19-
- name: Install build dependencies
20-
run: python3 -m pip install numpy wheel pytest
19+
- name: Install test dependencies
20+
run: python3 -m pip install pytest
2121

2222
- name: Test Python Interface
2323
run: |
@@ -53,8 +53,8 @@ jobs:
5353
# }' pyproject.toml
5454
# cat pyproject.toml
5555

56-
# - name: Install build dependencies
57-
# run: python3 -m pip install numpy wheel pytest
56+
- name: Install test dependencies
57+
run: python3 -m pip install pytest
5858

5959
- name: Test Python Interface
6060
run: |

.github/workflows/test-python-ubuntu.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
with:
1717
python-version: ${{ matrix.python }}
1818

19-
- name: Install build dependencies
20-
run: python3 -m pip install numpy wheel pytest
19+
- name: Install test dependencies
20+
run: python3 -m pip install pytest
2121

2222
- name: Test Python Interface
2323
run: |
@@ -53,8 +53,8 @@ jobs:
5353
# }' pyproject.toml
5454
# cat pyproject.toml
5555

56-
# - name: Install build dependencies
57-
# run: python3 -m pip install numpy wheel pytest
56+
- name: Install test dependencies
57+
run: python3 -m pip install pytest
5858

5959
- name: Test Python Interface
6060
run: |

.github/workflows/test-python-win.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobs:
1717
with:
1818
python-version: ${{ matrix.python }}
1919

20-
- name: Install build dependencies
21-
run: python -m pip install numpy wheel pytest
20+
- name: Install test dependencies
21+
run: python -m pip install pytest
2222

2323
- name: Test python install
2424
run: |
@@ -60,8 +60,8 @@ jobs:
6060
# cat pyproject.toml
6161

6262
# check if automatic
63-
# - name: Install build dependencies
64-
# run: python -m pip install numpy wheel pytest
63+
- name: Install test dependencies
64+
run: python -m pip install pytest
6565

6666
- name: Test python install
6767
run: |

0 commit comments

Comments
 (0)