From 91ca3d75bce58ac52ae294ef4fb9f48502fe4dd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Tue, 13 Dec 2016 14:21:31 +0100 Subject: [PATCH] Add missing patch --- pytest-python36.patch | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pytest-python36.patch diff --git a/pytest-python36.patch b/pytest-python36.patch new file mode 100644 index 0000000..1b68309 --- /dev/null +++ b/pytest-python36.patch @@ -0,0 +1,24 @@ +diff --git a/testing/test_doctest.py b/testing/test_doctest.py +index 4ea2cc5..a82071c 100644 +--- a/testing/test_doctest.py ++++ b/testing/test_doctest.py +@@ -211,8 +211,8 @@ class TestDoctests: + # doctest is never executed because of error during hello.py collection + result.stdout.fnmatch_lines([ + "*>>> import asdals*", +- "*UNEXPECTED*ImportError*", +- "ImportError: No module named *asdal*", ++ "*UNEXPECTED*Error*", ++ "*Error: No module named *asdal*", + ]) + + def test_doctest_unex_importerror_with_module(self, testdir): +@@ -227,7 +227,7 @@ class TestDoctests: + # doctest is never executed because of error during hello.py collection + result.stdout.fnmatch_lines([ + "*ERROR collecting hello.py*", +- "*ImportError: No module named *asdals*", ++ "*Error: No module named *asdals*", + "*Interrupted: 1 errors during collection*", + ]) +