pythonPackages.natsort: fix tests

A coverage report is definitely not needed for Nixpkgs.
This commit is contained in:
Robert Schütz 2018-02-20 21:34:44 +01:00
parent 958bd34ea4
commit d3a347547c

View file

@ -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 = {