Skip to content

Commit 865d4d7

Browse files
fix: Remove unnecessary shell quoting from GITHUB_ENV write
Signed-off-by: andrewwhitecdw <andrewwhitecdw@users.noreply.github.com>
1 parent 231100b commit 865d4d7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/test-wheel-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ jobs:
306306

307307
- name: Set up test repetition on nightly runs
308308
shell: bash --noprofile --norc -xeuo pipefail {0}
309-
run: echo "PYTEST_ADDOPTS=\"--count=${{ inputs.nruns }}\"" >> "$GITHUB_ENV"
309+
run: echo "PYTEST_ADDOPTS=--count=${{ inputs.nruns }}" >> "$GITHUB_ENV"
310310

311311
# ── Standard test steps (skipped for nightly modes) ──
312312
- name: Run cuda.pathfinder tests with see_what_works

0 commit comments

Comments
 (0)