From 0cd7e84163fd2345959a48e2d88eb8f47817b61b Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Wed, 20 Oct 2021 22:30:29 +0300 Subject: [PATCH] Fix a typo: test_shell -> test_shelve --- master/custom/factories.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/master/custom/factories.py b/master/custom/factories.py index 9cd19d61..636b8a21 100644 --- a/master/custom/factories.py +++ b/master/custom/factories.py @@ -403,7 +403,7 @@ class MacOSArmWithBrewBuild(UnixBuild): "LDFLAGS=-L/opt/homebrew/lib", ] # These tests are known to crash on M1 macs (see bpo-45289). - testFlags = UnixBuild.testFlags + " -x test_dbm test_dbm_ndbm test_shell" + testFlags = UnixBuild.testFlags + " -x test_dbm test_dbm_ndbm test_shelve" ############################################################################## ############################ WINDOWS BUILDS ################################