1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
Description: Disable automatic tests, that are know to be unstable
Author: W. Martin Borgert <debacle@debian.org>
Origin: vendor
Bug: https://github.com/giampaolo/pyftpdlib/issues/420
Bug-Debian: https://bugs.debian.org/856335
Last-Update: 2017-04-23
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/pyftpdlib/test/runner.py
+++ b/pyftpdlib/test/runner.py
@@ -17,8 +17,10 @@
def main():
+ excludefiles = os.environ.get("EXCLUDETESTS", "").split()
testmodules = [os.path.splitext(x)[0] for x in os.listdir(HERE)
- if x.endswith('.py') and x.startswith('test_')]
+ if x.endswith('.py') and x.startswith('test_')
+ and x not in excludefiles]
configure_logging()
remove_test_files()
suite = unittest.TestSuite()
|