summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2017-04-23 21:14:57 +0200
committerGiampaolo Rodola <g.rodola@gmail.com>2017-04-23 21:14:57 +0200
commit76d36b417ab1f0c7fa9070a2887cbcdae1bea66c (patch)
tree5f81c63b12c89dd9e3038701185e0c2038cb8edd
parent3ecc248a05cef8f62af572431dfe465c8ac0f3b4 (diff)
downloadpsutil-76d36b417ab1f0c7fa9070a2887cbcdae1bea66c.tar.gz
fix travis failure
-rwxr-xr-xpsutil/tests/test_system.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/psutil/tests/test_system.py b/psutil/tests/test_system.py
index ff82f67e..96f5480b 100755
--- a/psutil/tests/test_system.py
+++ b/psutil/tests/test_system.py
@@ -480,7 +480,7 @@ class TestSystemAPIs(unittest.TestCase):
if err.errno not in (errno.EPERM, errno.EACCES):
raise
else:
- if SUNOS:
+ if SUNOS or TRAVIS:
# on solaris apparently mount points can also be files
assert os.path.exists(disk.mountpoint), disk
else: