summaryrefslogtreecommitdiff
path: root/psutil/tests
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2017-11-12 01:47:20 +0100
committerGiampaolo Rodola <g.rodola@gmail.com>2017-11-12 01:47:20 +0100
commit988dcd737da2855bc3eb10904f46e6456a664f83 (patch)
tree2be30cc35d52374fcfdf2918048b090840c83bdc /psutil/tests
parentab90e4e6ac73c249cf7aea7e92aec2b6a07ef041 (diff)
downloadpsutil-988dcd737da2855bc3eb10904f46e6456a664f83.tar.gz
#1152: (DeviceIOControl), skip disk on ERROR_INVALID_FUNCTION and ERROR_NOT_SUPPORTED
Diffstat (limited to 'psutil/tests')
-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 3485fb8f..2da4d60d 100755
--- a/psutil/tests/test_system.py
+++ b/psutil/tests/test_system.py
@@ -670,7 +670,7 @@ class TestSystemAPIs(unittest.TestCase):
@unittest.skipIf(LINUX and not os.path.exists('/proc/diskstats'),
'/proc/diskstats not available on this linux version')
- @unittest.skipIf(APPVEYOR, "unreliable on APPVEYOR") # no visible disks
+ # @unittest.skipIf(APPVEYOR, "unreliable on APPVEYOR") # no visible disks
def test_disk_io_counters(self):
def check_ntuple(nt):
self.assertEqual(nt[0], nt.read_count)