1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Ole Streicher <olebole@debian.org>
Date: Thu, 23 Nov 2023 08:54:29 +0100
Subject: Don't try to compare arrays with a reference
---
pyproject.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pyproject.toml b/pyproject.toml
index 02fc68e..ec3d1f1 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -86,7 +86,7 @@ norecursedirs = ["build", "docs/_build"]
astropy_header = true
doctest_plus = "enabled"
text_file_format = "rst"
-addopts = ["-ra", "--strict-config", "--strict-markers", "--doctest-rst", "--arraydiff", "--arraydiff-default-format=fits", "--doctest-ignore-import-errors"]
+addopts = ["-ra", "--strict-config", "--strict-markers", "--doctest-rst", "--arraydiff-default-format=fits", "--doctest-ignore-import-errors"]
filterwarnings = [
"error",
'ignore:Setuptools is replacing distutils.:UserWarning',
|