From 9739d4c1d8e365e1b25ef347329c00539441f278 Mon Sep 17 00:00:00 2001 From: Pablo Galindo Date: Tue, 21 Sep 2021 17:04:54 +0100 Subject: [PATCH] bpo-45200: Ignore test_multiprocessing_* in ASAN build due to false positives --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1ed35b57593d6b..b0a18913bf6a09 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"