[Python-checkins] bpo-45200: Ignore test_multiprocessing_* in ASAN build due to false positives (GH-28492)

pablogsal webhook-mailer at python.org
Tue Sep 21 12:28:26 EDT 2021


https://github.com/python/cpython/commit/a356272362c15f2561872f3206baf5e9a0543997
commit: a356272362c15f2561872f3206baf5e9a0543997
branch: main
author: Pablo Galindo Salgado <Pablogsal at gmail.com>
committer: pablogsal <Pablogsal at gmail.com>
date: 2021-09-21T17:28:13+01:00
summary:

bpo-45200: Ignore test_multiprocessing_* in ASAN build due to false positives (GH-28492)

files:
M .github/workflows/build.yml

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 1ed35b57593d6..b0a18913bf6a0 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -267,4 +267,4 @@ jobs:
     - name: Display build info
       run: make pythoninfo
     - name: Tests
-      run: xvfb-run make buildbottest TESTOPTS="-j4 -uall,-cpu -x test_ctypes test_crypt test_decimal test_faulthandler test_interpreters test___all__ test_idle test_tix test_tk test_ttk_guionly test_ttk_textonly"
+      run: xvfb-run make buildbottest TESTOPTS="-j4 -uall,-cpu -x test_ctypes test_crypt test_decimal test_faulthandler test_interpreters test___all__ test_idle test_tix test_tk test_ttk_guionly test_ttk_textonly test_multiprocessing_fork test_multiprocessing_forkserver test_multiprocessing_spawn"



More information about the Python-checkins mailing list