Commit 8dda7995 authored by Guido van Rossum's avatar Guido van Rossum

Shup up warnings about mktemp here too.

parent 3cc9fde1
......@@ -190,6 +190,11 @@ class StartTests(unittest.TestCase):
pass
def test_suite():
# shutup warnings about mktemp
import warnings
warnings.filterwarnings("ignore", "mktemp")
if os.name == "posix":
return unittest.makeSuite(StartTests)
else:
......
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