From 682fc47b0e0d847156c36b0ae96b1bc15b65eed2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20K=C3=B6gl?= Date: Fri, 21 Dec 2012 10:19:31 +0100 Subject: skip disabled external tests --- ext_tests.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ext_tests.py b/ext_tests.py index ade3cbf..0b6caa6 100755 --- a/ext_tests.py +++ b/ext_tests.py @@ -50,6 +50,10 @@ class TestCaseTemplate(unittest.TestCase): # incomplete return + if test.get('disabled', False): + # test is disabled + return + if 'error' in test: self.assertRaises( (jsonpatch.JsonPatchException, jsonpatch.JsonPointerException), -- cgit v1.2.1