From 2ccd015b5acee170a4513496b0b57050706aa0bb Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Sun, 26 Jan 2020 01:18:28 +0100 Subject: [PATCH] Make sure to skip some tests for Python 3.5 --- conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conftest.py b/conftest.py index 6f4d2406..81d0fe54 100644 --- a/conftest.py +++ b/conftest.py @@ -17,7 +17,7 @@ collect_ignore = [ 'build/', 'test/examples', ] -if sys.version_info < (3, 5): +if sys.version_info < (3, 6): # Python 2 not supported syntax collect_ignore.append('test/test_inference/test_mixed.py')