aboutsummaryrefslogtreecommitdiffstats
path: root/community/py3-tqdm/0001-Skip-flaky-test-that-depends-on-GNU-coreutils.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/py3-tqdm/0001-Skip-flaky-test-that-depends-on-GNU-coreutils.patch')
-rw-r--r--community/py3-tqdm/0001-Skip-flaky-test-that-depends-on-GNU-coreutils.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/community/py3-tqdm/0001-Skip-flaky-test-that-depends-on-GNU-coreutils.patch b/community/py3-tqdm/0001-Skip-flaky-test-that-depends-on-GNU-coreutils.patch
deleted file mode 100644
index b4c3c8a0d22..00000000000
--- a/community/py3-tqdm/0001-Skip-flaky-test-that-depends-on-GNU-coreutils.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From 87da1f29923cf7f1af65f8b8a26c155545b61073 Mon Sep 17 00:00:00 2001
-From: Drew DeVault <sir@cmpwn.com>
-Date: Tue, 1 Jan 2019 20:40:05 -0500
-Subject: [PATCH] Skip flaky test that depends on GNU coreutils
-
----
- tqdm/tests/tests_main.py | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/tqdm/tests/tests_main.py b/tqdm/tests/tests_main.py
-index dd87ccf..d65febe 100644
---- a/tqdm/tests/tests_main.py
-+++ b/tqdm/tests/tests_main.py
-@@ -4,6 +4,7 @@ from os import path
- from shutil import rmtree
- from tempfile import mkdtemp
- from tqdm.cli import main, TqdmKeyError, TqdmTypeError
-+from nose.plugins.skip import SkipTest
-
- from tests_tqdm import with_setup, pretest, posttest, _range, closing, \
- UnicodeIO, StringIO
-@@ -17,6 +18,7 @@ def _sh(*cmd, **kwargs):
- # WARNING: this should be the last test as it messes with sys.stdin, argv
- @with_setup(pretest, posttest)
- def test_main():
-+ raise SkipTest
- """Test command line pipes"""
- ls_out = _sh('ls').replace('\r\n', '\n')
- ls = subprocess.Popen('ls', stdout=subprocess.PIPE,
---
-2.20.1
-