Skip to content

Commit

Permalink
pythonPackages.natsort: fix tests
Browse files Browse the repository at this point in the history
A coverage report is definitely not needed for Nixpkgs.
  • Loading branch information
Robert Schütz authored and aszlig committed Mar 3, 2018
1 parent 0811e7f commit e6b8eb0
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions pkgs/development/python-modules/natsort/default.nix
@@ -1,12 +1,9 @@
{ lib
, buildPythonPackage
, pythonOlder
, isPy35
, isPy36
, fetchPypi
, hypothesis
, pytestcache
, pytestcov
, pytestflakes
, pytestpep8
, pytest
Expand All @@ -19,10 +16,9 @@ buildPythonPackage rec {
pname = "natsort";
version = "5.2.0";

buildInputs = [
checkInputs = [
hypothesis
pytestcache
pytestcov
pytestflakes
pytestpep8
pytest
Expand All @@ -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 = {
Expand Down

0 comments on commit e6b8eb0

Please sign in to comment.