pythonPackages.nbdime: Fix test execution

master
Sandro Jäckel 2021-02-01 00:08:20 +01:00
parent b434939d39
commit 4b9908322c
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 11 additions and 2 deletions

View File

@ -12,7 +12,7 @@
, tabulate
, nbformat
, jsonschema
, pytest
, pytestCheckHook
, colorama
, pygments
, tornado
@ -40,7 +40,16 @@ buildPythonPackage rec {
jsonschema
mock
tabulate
pytest
pytestCheckHook
];
disabledTests = [
"test_apply_filter_no_repo"
"test_diff_api_checkpoint"
"test_filter_cmd_invalid_filter"
"test_inline_merge"
"test_interrogate_filter_no_repo"
"test_merge_input_strategy_inline_source_conflict"
];
nativeBuildInputs = [ setuptools_scm ];