diff --git a/openfecli/fetchables.py b/openfecli/fetchables.py index 4cd73dd07..5318a9950 100644 --- a/openfecli/fetchables.py +++ b/openfecli/fetchables.py @@ -4,20 +4,6 @@ _EXAMPLE_NB_BASE = "https://raw.githubusercontent.com/OpenFreeEnergy/ExampleNotebooks/main/" -RBFE_SHOWCASE = URLFetcher( - resources=[ - (_EXAMPLE_NB_BASE + "openmm_rbfe/inputs/", "181L_mod_capped_protonated.pdb"), - (_EXAMPLE_NB_BASE + "openmm_rbfe/inputs/", "Jnk1_ligands.sdf"), - (_EXAMPLE_NB_BASE + "openmm_rbfe/inputs/", "benzene.sdf"), - (_EXAMPLE_NB_BASE + "openmm_rbfe/inputs/", "ligands.sdf"), - (_EXAMPLE_NB_BASE + "openmm_rbfe/inputs/", "styrene.sdf"), - ], - short_name="rbfe-showcase", - short_help="Inputs needed for the RBFE Showcase Notebook", - section="hidden", - requires_ofe=(0, 9, 1), -).plugin - RBFE_TUTORIAL = URLFetcher( resources=[ (_EXAMPLE_NB_BASE + "rbfe_tutorial/", "tyk2_ligands.sdf"), diff --git a/openfecli/tests/test_fetchables.py b/openfecli/tests/test_fetchables.py index af74cd5aa..25a5b0baa 100644 --- a/openfecli/tests/test_fetchables.py +++ b/openfecli/tests/test_fetchables.py @@ -3,7 +3,7 @@ import pytest from click.testing import CliRunner -from openfecli.fetchables import RBFE_SHOWCASE, RBFE_TUTORIAL, RBFE_TUTORIAL_RESULTS +from openfecli.fetchables import RBFE_TUTORIAL, RBFE_TUTORIAL_RESULTS from openfecli.fetching import FetchablePlugin from .conftest import HAS_INTERNET @@ -31,8 +31,3 @@ def test_rbfe_tutorial(): @pytest.mark.flaky(reruns=3) # in case of Too Many Request error def test_rbfe_tutorial_results(): fetchable_test(RBFE_TUTORIAL_RESULTS) - - -@pytest.mark.flaky(reruns=3) # in case of Too Many Request error -def test_rbfe_showcase(): - fetchable_test(RBFE_SHOWCASE)