Merge pull request #115879 from khumba/doc-black-disable

nixos/manual/writing-nixos-tests: document how to disable Black silently
This commit is contained in:
Florian Klink
2021-03-11 16:18:17 +01:00
committed by GitHub

View File

@@ -448,6 +448,17 @@ import ./make-test-python.nix {
<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>
</para>
</section>