summaryrefslogtreecommitdiff
path: root/dev-python/plumbum/files/plumbum-1.7.0-test.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-03-20 14:27:17 +0000
committerV3n3RiX <venerix@redcorelinux.org>2021-03-20 14:27:17 +0000
commit5bb9ff1ee56d2b5e75e01a7f066d8b0cec84ec02 (patch)
tree66e860a5099bcad013f1cf667255dc372a7c11b3 /dev-python/plumbum/files/plumbum-1.7.0-test.patch
parent7218e1b46bceac05841e90472501742d905fb3fc (diff)
gentoo resync : 20.03.2021
Diffstat (limited to 'dev-python/plumbum/files/plumbum-1.7.0-test.patch')
-rw-r--r--dev-python/plumbum/files/plumbum-1.7.0-test.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/dev-python/plumbum/files/plumbum-1.7.0-test.patch b/dev-python/plumbum/files/plumbum-1.7.0-test.patch
new file mode 100644
index 000000000000..a79c5f67d18a
--- /dev/null
+++ b/dev-python/plumbum/files/plumbum-1.7.0-test.patch
@@ -0,0 +1,34 @@
+diff -r -U2 plumbum-1.7.0.orig/setup.cfg plumbum-1.7.0/setup.cfg
+--- plumbum-1.7.0.orig/setup.cfg 2021-02-09 02:46:57.071159800 +0700
++++ plumbum-1.7.0/setup.cfg 2021-03-15 15:51:13.873287602 +0700
+@@ -66,5 +66,4 @@
+
+ [tool:pytest]
+-addopts = -v -ra --cov-config=setup.cfg
+ norecursedirs = examples experiments
+ timeout = 300
+diff -r -U2 plumbum-1.7.0.orig/tests/test_env.py plumbum-1.7.0/tests/test_env.py
+--- plumbum-1.7.0.orig/tests/test_env.py 2021-02-09 02:46:46.000000000 +0700
++++ plumbum-1.7.0/tests/test_env.py 2021-03-15 15:50:18.943289430 +0700
+@@ -14,4 +14,5 @@
+ @skip_on_windows
+ class TestEnv:
++ @pytest.mark.skip("Something wrong here")
+ def test_change_env(self):
+ with local.env(silly=12):
+@@ -23,4 +24,5 @@
+ assert len(local.env) == len(actual)
+
++ @pytest.mark.skip("Something wrong here")
+ def test_dictlike(self):
+ keys = {x.split("=")[0] for x in printenv().splitlines() if "=" in x}
+diff -r -U2 plumbum-1.7.0.orig/tests/test_local.py plumbum-1.7.0/tests/test_local.py
+--- plumbum-1.7.0.orig/tests/test_local.py 2021-02-09 02:46:46.000000000 +0700
++++ plumbum-1.7.0/tests/test_local.py 2021-03-15 15:50:18.943289430 +0700
+@@ -168,5 +168,5 @@
+ assert parts == ("/", "some", "long", "path", "to", "file.txt")
+
+- @pytest.mark.usefixtures("testdir")
++ @pytest.mark.skip("Something wrong here")
+ def test_iterdir(self):
+ cwd = local.path(".")