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

Commit

Permalink
Skip testing activation atlasses on CI, bump to 0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Ludwig Schubert committed Nov 29, 2018
1 parent b4787c3 commit e090d24
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

from setuptools import setup, find_packages

version = "0.3.3"
version = "0.3.4"

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

Expand Down
6 changes: 2 additions & 4 deletions tests/recipes/test_activation_atlas.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,11 @@
from lucid.recipes.activation_atlas import activation_atlas, aligned_activation_atlas
from lucid.misc.io import save

# TODO(schubert@): think of actually automatable tests?

# Run test with just 1/10th of available samples
subset = NUMBER_OF_AVAILABLE_SAMPLES // 10


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


@pytest.mark.slow
@pytest.mark.skip(reason="takes too long to complete on CI")
def test_aligned_activation_atlas():
model1 = AlexNet()
model1.load_graphdef()
Expand Down

0 comments on commit e090d24

Please sign in to comment.