Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -542,6 +542,12 @@ jobs:

- name: build and install
run: |
# these two steps can be removed when
# https://github.com/nascheme/cpython_sanity/issues/12 and the images
# are rebuilt
apt update
apt install -y llvm
python -m pip install setuptools pytest pytest-run-parallel
CFLAGS="-g -O3 -fsanitize=thread" python -m pip install -v .
Expand Down
3 changes: 3 additions & 0 deletions suppressions_free_threading.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,6 @@ race_top:set_tp_bases
race_top:type_set_bases_unlocked

race:partial_vectorcall_fallback

# gh-113956: races from simultaneously interning a string
race_top:_Py_SetImmortalUntracked
Loading