aboutsummaryrefslogtreecommitdiff
path: root/debug/testlib.py
diff options
context:
space:
mode:
Diffstat (limited to 'debug/testlib.py')
-rw-r--r--debug/testlib.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/debug/testlib.py b/debug/testlib.py
index 6f5c9d5..8a6e402 100644
--- a/debug/testlib.py
+++ b/debug/testlib.py
@@ -980,7 +980,8 @@ class BaseTest:
sys.stdout.flush()
- if not self.early_applicable():
+ if self.__class__.__name__ in self.target.skip_tests or \
+ not self.early_applicable():
return "not_applicable"
self.start = time.time()