Skip to content

Commit 6d06268

Browse files
committed
organize tests
1 parent 5e31ae4 commit 6d06268

31 files changed

Lines changed: 7 additions & 9 deletions

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
[
2121
"test_example_workflows.py",
2222
"test_run_state.py",
23-
"test_sandbox_memory.py",
2423
"sandbox/capabilities/test_filesystem_capability.py",
2524
"sandbox/integration_tests/test_runner_pause_resume.py",
2625
"sandbox/test_client_options.py",
2726
"sandbox/test_exposed_ports.py",
2827
"sandbox/test_extract.py",
28+
"sandbox/test_memory.py",
2929
"sandbox/test_runtime.py",
3030
"sandbox/test_session_manager.py",
3131
"sandbox/test_session_sinks.py",
File renamed without changes.

tests/extensions/test_runloop_capabilities_example.py renamed to tests/extensions/sandbox/test_runloop_capabilities_example.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111

1212
def _load_example_module() -> Any:
1313
path = (
14-
Path(__file__).resolve().parents[2]
14+
Path(__file__).resolve().parents[3]
1515
/ "examples"
1616
/ "sandbox"
1717
/ "extensions"
1818
/ "runloop"
1919
/ "capabilities.py"
2020
)
21-
module_name = "tests.extensions.runloop_capabilities_example"
21+
module_name = "tests.extensions.sandbox.runloop_capabilities_example"
2222
spec = importlib.util.spec_from_file_location(module_name, path)
2323
assert spec is not None
2424
assert spec.loader is not None
File renamed without changes.

0 commit comments

Comments
 (0)