Skip to content
This repository was archived by the owner on Apr 10, 2024. It is now read-only.

Commit e090d24

Browse files
author
Ludwig Schubert
committed
Skip testing activation atlasses on CI, bump to 0.3.4
1 parent b4787c3 commit e090d24

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
from setuptools import setup, find_packages
2020

21-
version = "0.3.3"
21+
version = "0.3.4"
2222

2323
test_deps = ["future", "twine", "pytest", "pytest-mock", "python-coveralls"]
2424

tests/recipes/test_activation_atlas.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,11 @@
55
from lucid.recipes.activation_atlas import activation_atlas, aligned_activation_atlas
66
from lucid.misc.io import save
77

8-
# TODO(schubert@): think of actually automatable tests?
9-
108
# Run test with just 1/10th of available samples
119
subset = NUMBER_OF_AVAILABLE_SAMPLES // 10
1210

1311

14-
@pytest.mark.slow
12+
@pytest.mark.skip(reason="takes too long to complete on CI")
1513
def test_activation_atlas():
1614
model = AlexNet()
1715
model.load_graphdef()
@@ -20,7 +18,7 @@ def test_activation_atlas():
2018
save(atlas, "tests/recipes/results/activation_atlas/atlas.jpg")
2119

2220

23-
@pytest.mark.slow
21+
@pytest.mark.skip(reason="takes too long to complete on CI")
2422
def test_aligned_activation_atlas():
2523
model1 = AlexNet()
2624
model1.load_graphdef()

0 commit comments

Comments
 (0)