Skip to content

Commit d947296

Browse files
committed
test
1 parent fa70f67 commit d947296

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,8 +245,8 @@ jobs:
245245

246246
trace-tests:
247247
name: Trace nox tests
248-
timeout-minutes: 30
249-
runs-on: ubuntu-latest-16-cores
248+
timeout-minutes: 60
249+
runs-on: ubuntu-latest
250250
strategy:
251251
matrix:
252252
python-version-major: ["3"]

noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,8 +212,8 @@ def tests(session, shard):
212212
# Run all trace tests when shard is "trace"
213213
if shard == "trace":
214214
pytest_args.extend(["-m", "trace_server"])
215-
# Use high parallelism on the large 16-core runner
216-
session.posargs.insert(0, "-n16")
215+
# Use moderate parallelism since we're on standard runners
216+
session.posargs.insert(0, "-n4")
217217

218218
if shard == "trace_no_server":
219219
pytest_args.extend(["-m", "not trace_server"])

0 commit comments

Comments
 (0)