Disable FTP tests in Travis

This commit is contained in:
Andrey Smirnov
2018-03-16 11:04:18 +03:00
parent aa3a2ab595
commit d76259496d
4 changed files with 6 additions and 0 deletions

View File

@@ -61,6 +61,7 @@ class BaseTest(object):
fixtureDB = False
fixtureGpg = False
fixtureWebServer = False
requiresFTP = False
expectedCode = 0
configFile = {
@@ -118,6 +119,8 @@ class BaseTest(object):
return False
if self.fixtureDB and not os.path.exists(self.fixtureDBDir):
return False
if self.requiresFTP and os.environ.get('NO_FTP_ACCESS', '') == 'yes':
return False
return True