From af9abc97124020a35edda4a00c96abb764f61266 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Fri, 11 Dec 2015 12:35:36 -0500 Subject: [PATCH] Bypass tests on Python 2.7 when pmxbot is involved. --- conftest.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 conftest.py diff --git a/conftest.py b/conftest.py new file mode 100644 index 0000000..a149c46 --- /dev/null +++ b/conftest.py @@ -0,0 +1,4 @@ +import six + +if six.PY2: + collect_ignore = ['wolframalpha/pmxbot.py']