various #16
1 changed files with 4 additions and 3 deletions
|
|
@ -61,7 +61,8 @@ def test_results_abra(session_tmp_path_testout: Path):
|
|||
OUTPUT_DIR = session_tmp_path_testout.resolve()
|
||||
|
||||
DIR = DirManager(output_dir=OUTPUT_DIR, session_id="abc")
|
||||
all_files = list(DIR.STATUS.rglob("*"))
|
||||
passed_files = list(DIR.STATUS.rglob("passed-*"))
|
||||
all_files = [f.name for f in DIR.STATUS.rglob("*")]
|
||||
passed_files = [f.name for f in DIR.STATUS.rglob("passed-*")]
|
||||
failed_files = set(all_files) - set(passed_files)
|
||||
assert len(all_files) > 0
|
||||
assert len(all_files) == len(passed_files)
|
||||
assert not failed_files, failed_files
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue