about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2022-02-11 10:02:08 -0800
committerJonathan Ringer <jonringer@users.noreply.github.com>2022-02-12 08:33:45 -0800
commit852bd9392aeed382d668fb6465257363a7ffa8b5 (patch)
tree657b5dfa2ace519196ba305d7e0b24d6c417c814 /pkgs/development
parentaf35bc1c34a4d11d74c785b9912a55d59a834b6a (diff)
python3Packages.jupytext: fix tests
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/jupytext/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/jupytext/default.nix b/pkgs/development/python-modules/jupytext/default.nix
index 368cc19fdd944..b554ce129fb19 100644
--- a/pkgs/development/python-modules/jupytext/default.nix
+++ b/pkgs/development/python-modules/jupytext/default.nix
@@ -2,6 +2,7 @@
 , buildPythonPackage
 , fetchFromGitHub
 , GitPython
+, isort
 , jupyter-client
 , jupyter-packaging
 , jupyterlab
@@ -44,6 +45,7 @@ buildPythonPackage rec {
 
   checkInputs = [
     GitPython
+    isort
     jupyter-client
     notebook
     pytestCheckHook
@@ -65,6 +67,10 @@ buildPythonPackage rec {
     "--ignore-glob='tests/test_pre_commit_*.py'"
   ];
 
+  disabledTests = [
+    "test_apply_black_through_jupytext" # we can't do anything about ill-formatted notebooks
+  ];
+
   pythonImportsCheck = [
     "jupytext"
     "jupytext.cli"