summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-02-20 21:34:44 +0100
committeraszlig <aszlig@nix.build>2018-03-03 19:33:41 +0100
commite6b8eb0280be5b271a52c606e2365cb96b7bd9f1 (patch)
treee2db2227e043f9213725945e0a7778d949723a95 /pkgs/development/python-modules
parent0811e7f60eb0c729d75e7fabd854b74629f01e6b (diff)
downloadnixlib-e6b8eb0280be5b271a52c606e2365cb96b7bd9f1.tar
nixlib-e6b8eb0280be5b271a52c606e2365cb96b7bd9f1.tar.gz
nixlib-e6b8eb0280be5b271a52c606e2365cb96b7bd9f1.tar.bz2
nixlib-e6b8eb0280be5b271a52c606e2365cb96b7bd9f1.tar.lz
nixlib-e6b8eb0280be5b271a52c606e2365cb96b7bd9f1.tar.xz
nixlib-e6b8eb0280be5b271a52c606e2365cb96b7bd9f1.tar.zst
nixlib-e6b8eb0280be5b271a52c606e2365cb96b7bd9f1.zip
pythonPackages.natsort: fix tests
A coverage report is definitely not needed for Nixpkgs.
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/natsort/default.nix8
1 files changed, 2 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/natsort/default.nix b/pkgs/development/python-modules/natsort/default.nix
index a5940ed6c9f6..3e4b0d1368b7 100644
--- a/pkgs/development/python-modules/natsort/default.nix
+++ b/pkgs/development/python-modules/natsort/default.nix
@@ -1,12 +1,9 @@
 { lib
 , buildPythonPackage
 , pythonOlder
-, isPy35
-, isPy36
 , fetchPypi
 , hypothesis
 , pytestcache
-, pytestcov
 , pytestflakes
 , pytestpep8
 , pytest
@@ -19,10 +16,9 @@ buildPythonPackage rec {
   pname = "natsort";
   version = "5.2.0";
 
-  buildInputs = [
+  checkInputs = [
     hypothesis
     pytestcache
-    pytestcov
     pytestflakes
     pytestpep8
     pytest
@@ -41,7 +37,7 @@ buildPythonPackage rec {
   # testing based on project's tox.ini
   checkPhase = ''
     pytest --doctest-modules natsort
-    pytest --flakes --pep8 --cov natsort --cov-report term-missing
+    pytest --flakes --pep8
   '';
 
   meta = {