Skip to content

Commit d90b98e

Browse files
Refactor tests directory structure to match library modules
- Created subdirectories in tests/: backend, executor, standalone, task_scheduler. - Moved and renamed test files to corresponding subdirectories. - Updated relative paths in test files for executables and backends. - Added __init__.py files to new test packages. Co-authored-by: jan-janssen <[email protected]>
1 parent aa7d094 commit d90b98e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+16
-12
lines changed

tests/backend/__init__.py

Whitespace-only changes.

tests/executor/__init__.py

Whitespace-only changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def test_single_task(self):
111111
)
112112

113113
def test_output_files_cwd(self):
114-
dirname = os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))
114+
dirname = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", ".."))
115115
os.makedirs(dirname, exist_ok=True)
116116
file_stdout = os.path.join(dirname, "flux.out")
117117
file_stderr = os.path.join(dirname, "flux.err")
File renamed without changes.

0 commit comments

Comments
 (0)