From 6f0a7790c92cdb0b914210032b97d23208037e7c Mon Sep 17 00:00:00 2001 From: Radek Podgorny Date: Sun, 16 Jun 2024 21:01:06 +0200 Subject: [PATCH] remove travis special handling from tests since we're not longer using it --- test_all.py | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/test_all.py b/test_all.py index 0c0a3da1..d108cfcc 100755 --- a/test_all.py +++ b/test_all.py @@ -70,16 +70,7 @@ def tearDown(self): # when trying to lock the fuse lock file. if self.mounted: - if os.environ.get('RUNNING_ON_TRAVIS_CI'): - # TODO: investigate the following - # the sleep seems to be needed for some users or else the umount fails - # anyway, everything works fine on my system, so why wait? ;-) - # if it fails for someone, let's find the race and fix it! - # actually had to re-enable it because travis-ci is one of the bad cases - time.sleep(1) - - call('umount union') - elif platform.system() == 'Darwin': + if platform.system() == 'Darwin': call('umount %s' % self.mount_device) else: call('fusermount -u union')