We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48afec7 commit eaf1540Copy full SHA for eaf1540
tests/integration_tests/build/test_clippy.py
@@ -9,20 +9,19 @@
9
10
SUCCESS_CODE = 0
11
MACHINE = platform.machine()
12
-TARGETS = ["{}-unknown-linux-gnu".format(MACHINE),
13
- "{}-unknown-linux-musl".format(MACHINE)]
+TARGETS = [
+ "{}-unknown-linux-gnu".format(MACHINE),
14
+ "{}-unknown-linux-musl".format(MACHINE),
15
+]
16
17
-@pytest.mark.parametrize(
- "target",
18
- TARGETS
19
-)
+@pytest.mark.parametrize("target", TARGETS)
20
def test_rust_clippy(target):
21
"""
22
Test that clippy does not generate any errors/warnings.
23
24
@type: build
25
26
utils.run_cmd(
27
- 'cargo clippy --target {} --all --profile test'
28
- ' -- -D warnings'.format(target))
+ "cargo clippy --target {} --all --profile test" " -- -D warnings".format(target)
+ )
0 commit comments