diff options
| author | Giampaolo Rodola <g.rodola@gmail.com> | 2017-11-12 01:47:20 +0100 |
|---|---|---|
| committer | Giampaolo Rodola <g.rodola@gmail.com> | 2017-11-12 01:47:20 +0100 |
| commit | 988dcd737da2855bc3eb10904f46e6456a664f83 (patch) | |
| tree | 2be30cc35d52374fcfdf2918048b090840c83bdc /psutil/tests | |
| parent | ab90e4e6ac73c249cf7aea7e92aec2b6a07ef041 (diff) | |
| download | psutil-988dcd737da2855bc3eb10904f46e6456a664f83.tar.gz | |
#1152: (DeviceIOControl), skip disk on ERROR_INVALID_FUNCTION and ERROR_NOT_SUPPORTED
Diffstat (limited to 'psutil/tests')
| -rwxr-xr-x | psutil/tests/test_system.py | 2 |
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) |
