Skip to content
This repository was archived by the owner on Mar 6, 2026. It is now read-only.

Commit 675e491

Browse files
committed
update unittest.yml with unit_noextras
1 parent 1d95d9c commit 675e491

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

.github/workflows/unittest.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,40 @@ jobs:
3333
path: .coverage-${{ matrix.python }}
3434
include-hidden-files: true
3535

36+
unit_noextras:
37+
# Use `ubuntu-latest` runner.
38+
runs-on: ubuntu-latest
39+
strategy:
40+
matrix:
41+
python: ['3.9', '3.13']
42+
steps:
43+
- name: Checkout
44+
uses: actions/checkout@v4
45+
- name: Setup Python
46+
uses: actions/setup-python@v5
47+
with:
48+
python-version: ${{ matrix.python }}
49+
- name: Install nox
50+
run: |
51+
python -m pip install --upgrade setuptools pip wheel
52+
python -m pip install nox
53+
- name: Run unit_noextras tests
54+
env:
55+
COVERAGE_FILE: .coverage-${{ matrix.python }}
56+
run: |
57+
nox -s unit_noextras-${{ matrix.python }}
58+
- name: Upload coverage results
59+
uses: actions/upload-artifact@v4
60+
with:
61+
name: coverage-artifact-${{ matrix.python }}
62+
path: .coverage-${{ matrix.python }}
63+
include-hidden-files: true
64+
3665
cover:
3766
runs-on: ubuntu-latest
3867
needs:
3968
- unit
69+
- unit_noextras
4070
steps:
4171
- name: Checkout
4272
uses: actions/checkout@v4

0 commit comments

Comments
 (0)