mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-01-19 03:06:33 +00:00
test_disk_stats: tolerate used==0 for a Travis worker bug
Some Travis-CI workers report persistently empty disks, causing spurious test failures. It's not really that important to assert used>0, so this relaxes the test. Closes ticket:2290
This commit is contained in:
parent
3a75a75f95
commit
38668c9e35
@ -519,7 +519,8 @@ class FileUtil(unittest.TestCase):
|
||||
|
||||
disk = fileutil.get_disk_stats('.', 2**13)
|
||||
self.failUnless(disk['total'] > 0, disk['total'])
|
||||
self.failUnless(disk['used'] > 0, disk['used'])
|
||||
# we tolerate used==0 for a Travis-CI bug, see #2290
|
||||
self.failUnless(disk['used'] >= 0, disk['used'])
|
||||
self.failUnless(disk['free_for_root'] > 0, disk['free_for_root'])
|
||||
self.failUnless(disk['free_for_nonroot'] > 0, disk['free_for_nonroot'])
|
||||
self.failUnless(disk['avail'] > 0, disk['avail'])
|
||||
|
Loading…
Reference in New Issue
Block a user