Skip to content

Commit 06b98b5

Browse files
committed
install pytest
1 parent d34ac1e commit 06b98b5

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
uses: actions/setup-python@v5
1414
with:
1515
python-version: "3.10"
16-
- name: Install nox
16+
- name: Install nox / pytest
1717
run: |
1818
python -m pip install --upgrade setuptools pip wheel
19-
python -m pip install nox
19+
python -m pip install nox pytest
2020
- name: Run docs
2121
run: |
2222
nox -s docs
@@ -29,10 +29,10 @@ jobs:
2929
uses: actions/setup-python@v5
3030
with:
3131
python-version: "3.10"
32-
- name: Install nox
32+
- name: Install nox / pytest
3333
run: |
3434
python -m pip install --upgrade setuptools pip wheel
35-
python -m pip install nox
35+
python -m pip install nox pytest
3636
- name: Run docfx
3737
run: |
3838
nox -s docfx

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
uses: actions/setup-python@v5
1414
with:
1515
python-version: "3.14"
16-
- name: Install nox
16+
- name: Install nox / pytest
1717
run: |
1818
python -m pip install --upgrade setuptools pip wheel
19-
python -m pip install nox
19+
python -m pip install nox pytest
2020
- name: Run lint
2121
run: |
2222
nox -s lint

.github/workflows/unittest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
- name: Install nox / pytest
6666
run: |
6767
python -m pip install --upgrade setuptools pip wheel
68-
python -m pip install nox / pytest
68+
python -m pip install nox pytest
6969
- name: Run ${{ matrix.option }} tests
7070
env:
7171
COVERAGE_FILE: .coverage${{ matrix.option }}-${{matrix.python }}

0 commit comments

Comments
 (0)