diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2016-06-01 10:41:00 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2016-06-02 11:12:28 -0700 |
commit | 6dae591749cc93276d52a8c3098e11199fbe2b1c (patch) | |
tree | 030e7941e334fb10bbd3916ff97e43d51c3963af /unittests | |
parent | 84e4d93215ef4ca3c069b6208ec82c09fda93d0c (diff) |
unitttests: skip timeout test on windows
This relies on and tests a linux (or maybe posix?) only feature, so skip
on windows.
Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Diffstat (limited to 'unittests')
-rw-r--r-- | unittests/base_tests.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/unittests/base_tests.py b/unittests/base_tests.py index 20587036a..2c3d99b51 100644 --- a/unittests/base_tests.py +++ b/unittests/base_tests.py @@ -91,6 +91,7 @@ def test_run_return_early(): @attr('slow') +@utils.nose.Skip.platform('win32', is_=True) @utils.nose.Skip.module('psutil', available=True) @utils.nose.Skip.backport(3.3, 'subprocess32') @nt.timed(6) |