From 1069fe2ee60ddefd5ccc20dda9a68c5df20eb4d2 Mon Sep 17 00:00:00 2001 From: Frithjof Gressmann Date: Fri, 22 Mar 2024 20:04:36 -0500 Subject: [PATCH] Move project interface --- .gitignore | 4 ++-- tests/{_machinable => interface}/project.py | 2 +- tests/test_interface.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) rename tests/{_machinable => interface}/project.py (65%) diff --git a/.gitignore b/.gitignore index 83471cd..1c183dd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,6 @@ tests/**/compiled -tests/_machinable/remotes -tests/_machinable/storage +tests/interface/remotes +tests/interface/storage examples/datasets # Byte-compiled / optimized / DLL files diff --git a/tests/_machinable/project.py b/tests/interface/project.py similarity index 65% rename from tests/_machinable/project.py rename to tests/interface/project.py index 0d8ba89..aba924a 100644 --- a/tests/_machinable/project.py +++ b/tests/interface/project.py @@ -4,5 +4,5 @@ class TestEnv(Project): def on_resolve_remotes(self): return { - "mpi": "url+https://raw.githubusercontent.com/machinable-org/machinable/2670e9626eb548f6ce2301923be1f49642086d8c/docs/examples/mpi-execution/mpi.py", + "mpi": "url+https://raw.githubusercontent.com/machinable-org/machinable/main/docs/examples/mpi-execution/mpi.py", } diff --git a/tests/test_interface.py b/tests/test_interface.py index fc21885..1a91674 100644 --- a/tests/test_interface.py +++ b/tests/test_interface.py @@ -16,7 +16,7 @@ def test_interface(tmp_path): debug = True storage_directory = str(tmp_path / "storage") if debug: - storage_directory = f"{wd}/_machinable/storage" + storage_directory = f"{wd}/interface/storage" with get("machinable.index", storage_directory), get( "machinable.project", wd