Commit d2274bf2 authored by Guido van Rossum's avatar Guido van Rossum

Shup up warnings about mktemp here too.

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