Skip to content

Commit e7c966f

Browse files
committed
Revert format in tests/integration_tests/build/test_clippy.py
Signed-off-by: StemCll [email protected]
1 parent f709c7c commit e7c966f

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

tests/integration_tests/build/test_clippy.py

+8-7
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,20 @@
99

1010
SUCCESS_CODE = 0
1111
MACHINE = platform.machine()
12-
TARGETS = [
13-
"{}-unknown-linux-gnu".format(MACHINE),
14-
"{}-unknown-linux-musl".format(MACHINE),
15-
]
12+
TARGETS = ["{}-unknown-linux-gnu".format(MACHINE),
13+
"{}-unknown-linux-musl".format(MACHINE)]
1614

1715

18-
@pytest.mark.parametrize("target", TARGETS)
16+
@pytest.mark.parametrize(
17+
"target",
18+
TARGETS
19+
)
1920
def test_rust_clippy(target):
2021
"""
2122
Test that clippy does not generate any errors/warnings.
2223
2324
@type: build
2425
"""
2526
utils.run_cmd(
26-
"cargo clippy --target {} --all --profile test" " -- -D warnings".format(target)
27-
)
27+
'cargo clippy --target {} --all --profile test'
28+
' -- -D warnings'.format(target))

0 commit comments

Comments
 (0)