summaryrefslogtreecommitdiff
path: root/psutil/tests/test_misc.py
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2017-11-23 16:51:55 +0100
committerGiampaolo Rodola <g.rodola@gmail.com>2017-11-23 16:51:55 +0100
commitecab2b3aa54ec5dbee9d7f7664ad4ed359048cd5 (patch)
tree098c51fcc37fe3da91529f8bbc656632030aebb7 /psutil/tests/test_misc.py
parentc0a35fd6b5f6b2cad4b370d31d2d175db316faf8 (diff)
downloadpsutil-ecab2b3aa54ec5dbee9d7f7664ad4ed359048cd5.tar.gz
do not test platf specific modules on wheelhouse
Diffstat (limited to 'psutil/tests/test_misc.py')
-rwxr-xr-xpsutil/tests/test_misc.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/psutil/tests/test_misc.py b/psutil/tests/test_misc.py
index d0ec8a7d..f67c0e4c 100755
--- a/psutil/tests/test_misc.py
+++ b/psutil/tests/test_misc.py
@@ -646,8 +646,7 @@ class TestWrapNumbers(unittest.TestCase):
@unittest.skipIf(TOX, "can't test on TOX")
# See: https://travis-ci.org/giampaolo/psutil/jobs/295224806
-@unittest.skipIf(TRAVIS and not
- os.path.exists(os.path.join(SCRIPTS_DIR, 'free.py')),
+@unittest.skipIf(TRAVIS and not os.path.exists(SCRIPTS_DIR),
"can't locate scripts directory")
class TestScripts(unittest.TestCase):
"""Tests for scripts in the "scripts" directory."""