From d814c98ec86d632e706ca71263e09be60eb23eb5 Mon Sep 17 00:00:00 2001 From: Andreas Rammhold Date: Wed, 5 Sep 2018 01:02:06 +0200 Subject: [PATCH] python.pkgs.pytest-fixture-config: disable tests (#46021) Tests seem to fail on all recent versions even outside of our build system. The upstream CI tests seem to somehow succeed but I wasn't able to reproduce that locally. For not it is probably best to disable them. --- .../python-modules/pytest-fixture-config/default.nix | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/pytest-fixture-config/default.nix b/pkgs/development/python-modules/pytest-fixture-config/default.nix index df700526d1b4..67ceebef3057 100644 --- a/pkgs/development/python-modules/pytest-fixture-config/default.nix +++ b/pkgs/development/python-modules/pytest-fixture-config/default.nix @@ -1,5 +1,5 @@ { stdenv, buildPythonPackage, fetchPypi -, setuptools-git, pytest, six }: +, setuptools-git, pytest }: buildPythonPackage rec { pname = "pytest-fixture-config"; @@ -14,11 +14,7 @@ buildPythonPackage rec { buildInputs = [ pytest ]; - checkInputs = [ six ]; - - checkPhase = '' - py.test - ''; + doCheck = false; meta = with stdenv.lib; { description = "Simple configuration objects for Py.test fixtures. Allows you to skip tests when their required config variables aren’t set.";