forked from mirrors/nixpkgs
markdown-it-py, mdit-py-plugins: allow disabling the test suite
the test suite pulls in a huge number of dependencies, from cryptography over sphinx to zope. since we want to use markdown-it-py in the nixos manual build and closure size is important we'll skip the test suite for the manual and rely on the regular builds to catch test failures. it's not ideal, but markdown-it-py is the closes thing to the official MyST parser we can get right now.
This commit is contained in:
parent
248e1b957d
commit
6865699e39
|
@ -12,6 +12,9 @@
|
|||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, typing-extensions
|
||||
# allow disabling tests for the nixos manual build.
|
||||
# the test suite closure is just too large.
|
||||
, disableTests ? false
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -43,6 +46,7 @@ buildPythonPackage rec {
|
|||
nativeCheckInputs = [
|
||||
psutil
|
||||
py
|
||||
] ++ lib.optionals (! disableTests) [
|
||||
pytest-benchmark
|
||||
pytest-regressions
|
||||
pytestCheckHook
|
||||
|
|
|
@ -6,6 +6,9 @@
|
|||
, markdown-it-py
|
||||
, pytest-regressions
|
||||
, pytestCheckHook
|
||||
# allow disabling tests for the nixos manual build.
|
||||
# the test suite closure is just too large.
|
||||
, disableTests ? false
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -30,7 +33,7 @@ buildPythonPackage rec {
|
|||
markdown-it-py
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
nativeCheckInputs = lib.optionals (!disableTests) [
|
||||
pytestCheckHook
|
||||
pytest-regressions
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue