nixos/manual/writing-nixos-tests: document how to disable Black silently
This commit is contained in:
parent
72826cbd2c
commit
d3ea5a7290
@ -448,6 +448,17 @@ import ./make-test-python.nix {
|
|||||||
<replaceable>Python code…</replaceable>
|
<replaceable>Python code…</replaceable>
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
</programlisting>
|
||||||
|
This will produce a Nix warning at evaluation time. To fully disable the
|
||||||
|
linter, wrap the test script in comment directives to disable the Black linter
|
||||||
|
directly (again, don't commit this within the Nixpkgs repository):
|
||||||
|
<programlisting>
|
||||||
|
testScript =
|
||||||
|
''
|
||||||
|
# fmt: off
|
||||||
|
<replaceable>Python code…</replaceable>
|
||||||
|
# fmt: on
|
||||||
|
'';
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</para>
|
</para>
|
||||||
</section>
|
</section>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user