Skip to content

Commit c0824d3

Browse files
committed
Fix lint
1 parent 281b7cc commit c0824d3

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

ci/run_script.py

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,15 @@ def run_test(test_filename: str) -> None:
1515
Run pytest with a given filename.
1616
"""
1717
path = Path('tests') / 'mock_vws' / test_filename
18-
result = pytest.main([
19-
'-vvv',
20-
'--exitfirst',
21-
str(path),
22-
'--cov=src',
23-
'--cov=tests',
24-
])
18+
result = pytest.main(
19+
[
20+
'-vvv',
21+
'--exitfirst',
22+
str(path),
23+
'--cov=src',
24+
'--cov=tests',
25+
]
26+
)
2527
sys.exit(result)
2628

2729

0 commit comments

Comments
 (0)