Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions openfecli/fetchables.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down
7 changes: 1 addition & 6 deletions openfecli/tests/test_fetchables.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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)
Loading