Skip to content

Commit 8043b80

Browse files
committed
REDO BEFORE MERGE: enable on some CI builds
1 parent 53b5500 commit 8043b80

3 files changed

Lines changed: 10 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,7 @@ jobs:
261261
bolt-optimizations: ${{ matrix.bolt }}
262262
free-threading: ${{ matrix.free-threading }}
263263
os: ${{ matrix.os }}
264+
traceback_timestamps: ${{ matrix.os == 'ubuntu-22.04-arm' && matrix.bolt == false && 'ns' || '' }}
264265

265266
build_ubuntu_ssltests:
266267
name: 'Ubuntu SSL tests with OpenSSL'

.github/workflows/reusable-ubuntu.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,13 @@ on:
1717
type: boolean
1818
default: false
1919
os:
20-
description: OS to run the job
21-
required: true
22-
type: string
20+
description: OS to run the job
21+
required: true
22+
type: string
23+
traceback_timestamps:
24+
description: Set to us|1|ns|iso to enable printing timestamps on exceptions in tracebacks (for feature coverage)
25+
required: false
26+
type: string
2327

2428
env:
2529
FORCE_COLOR: 1
@@ -33,6 +37,7 @@ jobs:
3337
OPENSSL_VER: 3.0.15
3438
PYTHONSTRICTEXTENSIONBUILD: 1
3539
TERM: linux
40+
PYTHON_TRACEBACK_TIMESTAMPS: ${{ inputs.traceback_timestamps }}
3641
steps:
3742
- uses: actions/checkout@v4
3843
with:

.github/workflows/reusable-windows.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929
timeout-minutes: 60
3030
env:
3131
ARCH: ${{ inputs.arch }}
32+
PYTHON_TRACEBACK_TIMESTAMPS: 'ns'
3233
steps:
3334
- uses: actions/checkout@v4
3435
with:

0 commit comments

Comments
 (0)