Skip to content

Commit 75a6e68

Browse files
committed
chore: flake8에 맞춰 코드 정리한다.
1 parent f8d1d67 commit 75a6e68

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/pytest/package_manager/test_mod.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@
66
import pytest
77
import subprocess
88

9+
910
DIST_PATH = os.path.join(os.environ.get("TOX_PATH"), "dist", "cli.exe")
1011

12+
1113
@pytest.mark.parametrize("input_path, output_path, extra_args", [
1214
("tests/test_mod", "tests/result/mod", "-m mod")
1315
])
@@ -18,6 +20,7 @@ def test_ubuntu(input_path, output_path, extra_args):
1820
assert result.returncode == 0, f"Command failed: {command}\nstdout: {result.stdout}\nstderr: {result.stderr}"
1921
assert any(os.scandir(output_path)), f"Output file does not exist: {output_path}"
2022

23+
2124
@pytest.mark.parametrize("input_path, output_path", [
2225
(os.path.join("tests", "test_mod"), os.path.join("tests", "result", "mod")),
2326
])

0 commit comments

Comments
 (0)