Kaydet (Commit) c7ca3ffb authored tarafından Tim Peters's avatar Tim Peters

Skip test_mhlib on Windows -- too many Unix assumptions.

üst e4deb959
...@@ -7,11 +7,15 @@ ...@@ -7,11 +7,15 @@
### mhlib. It should. ### mhlib. It should.
import unittest import unittest
from test_support import run_unittest, TESTFN from test_support import run_unittest, TESTFN, TestSkipped
import os, StringIO import os, StringIO
import sys
import mhlib import mhlib
if sys.platform.startswith("win"):
raise TestSkipped("test_mhlib skipped on Windows -- "
"too many Unix assumptions")
_mhroot = TESTFN+"_MH" _mhroot = TESTFN+"_MH"
_mhpath = os.path.join(_mhroot, "MH") _mhpath = os.path.join(_mhroot, "MH")
_mhprofile = os.path.join(_mhroot, ".mh_profile") _mhprofile = os.path.join(_mhroot, ".mh_profile")
......
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