Commit 0cba38d2 authored by Victor Stinner's avatar Victor Stinner Committed by GitHub

bpo-30778: Skip test_bsddb3 on Windows XP (#2877)

* bpo-30778: Skip test_bsddb3 on Windows XP

* Fix if, don't skip Windows Vista
parent b65cb8a3
......@@ -28,6 +28,10 @@ if 'silent' in sys.argv: # take care of old flag, just in case
verbose = False
sys.argv.remove('silent')
# bpo-30778: test_bsddb3 crashs randomly on Windows XP
if hasattr(sys, 'getwindowsversion') and sys.getwindowsversion()[:2] < (6, 0):
raise unittest.SkipTest("bpo-30778: skip tests on Windows XP")
class TimingCheck(unittest.TestCase):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment