diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-12-23 00:09:03 +0100 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-12-23 00:17:10 +0100 |
commit | bc455acb7486315c7a34a8a4ace0cb08b2d630b5 (patch) | |
tree | 34315adbe0d7be8ccf1da0d33332daedb93be895 /community/py3-pytest-xdist/fix-acceptance-tests.patch | |
parent | de4eb13468b123dd585eca72888bec6328db7e0e (diff) | |
download | aports-bc455acb7486315c7a34a8a4ace0cb08b2d630b5.tar.bz2 aports-bc455acb7486315c7a34a8a4ace0cb08b2d630b5.tar.xz |
community/py3-pytest-xdist: upgrade to 1.31.0
Diffstat (limited to 'community/py3-pytest-xdist/fix-acceptance-tests.patch')
-rw-r--r-- | community/py3-pytest-xdist/fix-acceptance-tests.patch | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/community/py3-pytest-xdist/fix-acceptance-tests.patch b/community/py3-pytest-xdist/fix-acceptance-tests.patch deleted file mode 100644 index 5d039862e7..0000000000 --- a/community/py3-pytest-xdist/fix-acceptance-tests.patch +++ /dev/null @@ -1,40 +0,0 @@ -diff --git a/testing/acceptance_test.py b/testing/acceptance_test.py -index 4537fd0bed..e3a6f5b73c 100644 ---- a/testing/acceptance_test.py -+++ b/testing/acceptance_test.py -@@ -784,7 +784,7 @@ class TestWarnings: - ) - ) - result = testdir.runpytest(n) -- result.stdout.fnmatch_lines(["*this is a warning*", "*1 passed, 1 warnings*"]) -+ result.stdout.fnmatch_lines(["*this is a warning*", "*1 passed, 1 warning*"]) - - @pytest.mark.parametrize("n", ["-n0", "-n1"]) - def test_custom_subclass(self, testdir, n): -@@ -808,7 +808,7 @@ class TestWarnings: - ) - testdir.syspathinsert() - result = testdir.runpytest(n) -- result.stdout.fnmatch_lines(["*MyWarning*", "*1 passed, 1 warnings*"]) -+ result.stdout.fnmatch_lines(["*MyWarning*", "*1 passed, 1 warning*"]) - - @pytest.mark.parametrize("n", ["-n0", "-n1"]) - def test_unserializable_arguments(self, testdir, n): -@@ -825,7 +825,7 @@ class TestWarnings: - ) - testdir.syspathinsert() - result = testdir.runpytest(n) -- result.stdout.fnmatch_lines(["*UserWarning*foo.txt*", "*1 passed, 1 warnings*"]) -+ result.stdout.fnmatch_lines(["*UserWarning*foo.txt*", "*1 passed, 1 warning*"]) - - @pytest.mark.parametrize("n", ["-n0", "-n1"]) - def test_unserializable_warning_details(self, testdir, n): -@@ -857,7 +857,7 @@ class TestWarnings: - testdir.syspathinsert() - result = testdir.runpytest(n) - result.stdout.fnmatch_lines( -- ["*ResourceWarning*unclosed*", "*1 passed, 1 warnings*"] -+ ["*ResourceWarning*unclosed*", "*1 passed, 1 warning*"] - ) - - |