Skip to content

Commit 1ede5b3

Browse files
committed
Adjust nox flags.
1 parent b60ed70 commit 1ede5b3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
python -Im pip install --upgrade nox
5959
python -Im nox --version
6060
- name: Run tests
61-
run: "python -Im nox --non-interactive --error-on-external-run --tag tests --python ${{ matrix.python-version }}"
61+
run: "python -Im nox --non-interactive --error-on-external-run -t tests --python ${{ matrix.python-version }}"
6262
- name: Upload coverage data
6363
uses: actions/upload-artifact@v4
6464
with:
@@ -127,7 +127,7 @@ jobs:
127127
python -Im pip install --upgrade nox
128128
python -Im nox --version
129129
- name: Run documentation checks
130-
run: "python -Im nox --non-interactive --error-on-external-run --tag docs"
130+
run: "python -Im nox --non-interactive --error-on-external-run -t docs"
131131

132132

133133
lint-format:
@@ -151,9 +151,9 @@ jobs:
151151
python -Im pip install --upgrade nox
152152
python -Im nox --version
153153
- name: Check code formatting
154-
run: "python -Im nox --non-interactive --error-on-external-run --tag formatters --python 3.13"
154+
run: "python -Im nox --non-interactive --error-on-external-run -t formatters --python 3.13"
155155
- name: Lint code
156-
run: "python -Im nox --non-interactive --error-on-external-run --tag linters --python 3.13"
156+
run: "python -Im nox --non-interactive --error-on-external-run -t linters --python 3.13"
157157

158158

159159
check-package:
@@ -177,7 +177,7 @@ jobs:
177177
python -Im pip install --upgrade nox
178178
python -Im nox --version
179179
- name: Check package
180-
run: "python -Im nox --non-interactive --error-on-external-run --tag packaging --python 3.13"
180+
run: "python -Im nox --non-interactive --error-on-external-run -t packaging --python 3.13"
181181

182182

183183
required-checks-pass:

0 commit comments

Comments
 (0)