forked from mirrors/nixpkgs
27 lines
900 B
Diff
27 lines
900 B
Diff
From c8edfefbbec87ca776d3cf84ee895aac200dda40 Mon Sep 17 00:00:00 2001
|
|
From: Timo Kaufmann <timokau@zoho.com>
|
|
Date: Sun, 21 Oct 2018 17:52:40 +0200
|
|
Subject: [PATCH] Only test py2/py3 optional tests when all of sage is tested
|
|
|
|
---
|
|
src/sage/doctest/control.py | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/src/sage/doctest/control.py b/src/sage/doctest/control.py
|
|
index bf18df8b2b..b04af0e2e8 100644
|
|
--- a/src/sage/doctest/control.py
|
|
+++ b/src/sage/doctest/control.py
|
|
@@ -362,7 +362,8 @@ class DocTestController(SageObject):
|
|
if not optionaltag_regex.search(o):
|
|
raise ValueError('invalid optional tag {!r}'.format(o))
|
|
|
|
- options.optional |= auto_optional_tags
|
|
+ if "sage" in options.optional:
|
|
+ options.optional |= auto_optional_tags
|
|
|
|
self.options = options
|
|
|
|
--
|
|
2.18.1
|
|
|