From 7fb4e339b6dfc2f20b1874fc7bc0a520cd74000e Mon Sep 17 00:00:00 2001 From: Eric Snow Date: Wed, 10 Jan 2018 01:01:53 +0000 Subject: [PATCH] Only test debugger_protocol under Python 3. --- tests/debugger_protocol/__init__.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/debugger_protocol/__init__.py b/tests/debugger_protocol/__init__.py index e69de29b..bd305792 100644 --- a/tests/debugger_protocol/__init__.py +++ b/tests/debugger_protocol/__init__.py @@ -0,0 +1,6 @@ +import sys +import unittest + + +if sys.version_info[0] == 2: + raise unittest.SkipTest('not tested under Python 2')