From 62b1c6177607b85a8d2cc5136bc23d660f0d9931 Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Sat, 23 Jan 2021 22:19:18 +0100 Subject: [PATCH] Igonre deprecation_test as well --- src/conftest.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/conftest.py b/src/conftest.py index fb204cfcc79..33135c9e333 100644 --- a/src/conftest.py +++ b/src/conftest.py @@ -15,7 +15,8 @@ # Ignore a few test files that are (not yet) using pytest collect_ignore = [ "sage/misc/nested_class_test.py", - "sage/repl/rich_output/backend_test.py" + "sage/repl/rich_output/backend_test.py", + "sage/tests/deprecation_test.py" ]