about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyipp
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-02-04 13:34:45 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2021-02-04 13:34:45 +0100
commit771269e9bad272355a2df34fa93ddd500fc06029 (patch)
tree1f0ed6fe4d20d0bb2ca989c226e2f4be4fc3d289 /pkgs/development/python-modules/pyipp
parent296dc1ec2aec6d6ce6d8ab5cd6348f2a3e7bb729 (diff)
python3Packages.pyipp: run all tests
Diffstat (limited to 'pkgs/development/python-modules/pyipp')
-rw-r--r--pkgs/development/python-modules/pyipp/default.nix18
1 files changed, 2 insertions, 16 deletions
diff --git a/pkgs/development/python-modules/pyipp/default.nix b/pkgs/development/python-modules/pyipp/default.nix
index ed5a5f4576abb..dfef79a4dcae3 100644
--- a/pkgs/development/python-modules/pyipp/default.nix
+++ b/pkgs/development/python-modules/pyipp/default.nix
@@ -6,7 +6,7 @@
 , fetchFromGitHub
 , pytest-asyncio
 , pytestCheckHook
-, pytestcov
+, pytest-cov
 , yarl
 }:
 
@@ -30,24 +30,10 @@ buildPythonPackage rec {
   checkInputs = [
     aresponses
     pytest-asyncio
-    pytestcov
+    pytest-cov
     pytestCheckHook
   ];
 
-  # Some tests are failing due to encoding issues
-  # https://github.com/ctalkington/python-ipp/issues/121
-  disabledTests = [
-    "test_internal_session"
-    "test_request_port"
-    "est_http_error426"
-    "test_unexpected_response"
-    "test_printer"
-    "test_raw"
-    "test_ipp_request"
-    "test_request_tls"
-    "test_ipp_error_0x0503"
-  ];
-
   pythonImportsCheck = [ "pyipp" ];
 
   meta = with lib; {