From: Pablo Galindo Salgado Date: Tue, 21 Sep 2021 16:28:13 +0000 (+0100) Subject: bpo-45200: Ignore test_multiprocessing_* in ASAN build due to false positives (GH... X-Git-Tag: v3.11.0a1~103 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a356272362c15f2561872f3206baf5e9a0543997;p=thirdparty%2FPython%2Fcpython.git bpo-45200: Ignore test_multiprocessing_* in ASAN build due to false positives (GH-28492) --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1ed35b57593d..b0a18913bf6a 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"