Skip to content

Commit fadf674

Browse files
committed
combine release testenv
Signed-off-by: hkkim <[email protected]>
1 parent 5e184f2 commit fadf674

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

tests/test_tox.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ def test_release():
2424

2525
success, _ = run_command("fosslight_source -p tests/test_files -o test_scan/scan_result.csv")
2626
assert success is True, "Test Release: Failed to generate scan result CSV file"
27-
2827
assert os.path.exists("test_scan/scan_result.csv"), "Test Release: scan_result.csv file not generated"
2928
with open("test_scan/scan_result.csv", 'r') as file:
3029
content = file.read()
@@ -35,7 +34,6 @@ def test_release():
3534
"fosslight_source -p tests -e test_files/test cli_test.py -j -m -o test_scan2/scan_exclude_result.csv"
3635
)
3736
assert success is True, "Test release: Exclude scan failded"
38-
3937
assert os.path.exists("test_scan2/scan_exclude_result.csv"), "Test Release: scan_exclude_result.csv file not generated"
4038
with open("test_scan2/scan_exclude_result.csv", 'r') as file:
4139
content = file.read()
@@ -45,7 +43,6 @@ def test_release():
4543
success, _ = run_command("fosslight_source -p tests/test_files -m -j -o test_scan3/")
4644
assert success is True, "Test release: Failed to generate JSON files"
4745

48-
4946
files_in_test_scan3 = os.listdir("test_scan3")
5047
assert len(files_in_test_scan3) > 0, "Test Release: test_scan3 is empty"
5148
print(f"Files in test_scan3: {files_in_test_scan3}")

0 commit comments

Comments
 (0)