summary refs log tree commit diff
path: root/pkgs/development/python-modules/natsort
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-02-20 21:34:44 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-02-22 01:46:11 +0100
commitd3a347547cf65814056de53c046a765e96a82771 (patch)
treea3fef0d10fb78cce37002c5405f32f2c41fb04fb /pkgs/development/python-modules/natsort
parent958bd34ea44ae129dbd26c33de20b6e052ebc6d0 (diff)
downloadnixpkgs-d3a347547cf65814056de53c046a765e96a82771.tar
nixpkgs-d3a347547cf65814056de53c046a765e96a82771.tar.gz
nixpkgs-d3a347547cf65814056de53c046a765e96a82771.tar.bz2
nixpkgs-d3a347547cf65814056de53c046a765e96a82771.tar.lz
nixpkgs-d3a347547cf65814056de53c046a765e96a82771.tar.xz
nixpkgs-d3a347547cf65814056de53c046a765e96a82771.tar.zst
nixpkgs-d3a347547cf65814056de53c046a765e96a82771.zip
pythonPackages.natsort: fix tests
A coverage report is definitely not needed for Nixpkgs.
Diffstat (limited to 'pkgs/development/python-modules/natsort')
-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 a5940ed6c9f..3e4b0d1368b 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 = {