summaryrefslogtreecommitdiff
path: root/debian/tests/upstream.py
diff options
context:
space:
mode:
Diffstat (limited to 'debian/tests/upstream.py')
-rw-r--r--debian/tests/upstream.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/debian/tests/upstream.py b/debian/tests/upstream.py
index 51265ec0..defa2da5 100644
--- a/debian/tests/upstream.py
+++ b/debian/tests/upstream.py
@@ -4,14 +4,15 @@ import pytest
blacklist = ["test_knn.py", # Requires pykeops
"test_representations.py", # Look into this
- "test_tomato.py", # Wants to use X.
- "test_wasserstein_distance.py::test_wasserstein_distance_grad" # Requires PyTorch.
+ "test_wasserstein_distance.py::test_wasserstein_distance_grad", # Requires PyTorch.
+ "test_remote_datasets.py" # Requires Internet access, and downloads DFSG-dubious data.
]
print("Blacklist: %s" %(str(blacklist)))
# These should be completely ignored, not even loaded (their imports fail).
-ignorelist = ["test_dtm.py", # Requires hnswlib.
+ignorelist = ["test_diff.py", # Requires TF.
+ "test_dtm.py", # Requires hnswlib.
"test_wasserstein_with_tensors.py" # Requires PyTorch and TF
]