Skip to content

Commit

Permalink
python.pkgs.pytest-fixture-config: disable tests (#46021)
Browse files Browse the repository at this point in the history
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.

(cherry picked from commit d814c98)
  • Loading branch information
andir authored and xeji committed Sep 4, 2018
1 parent b25eb04 commit 2c844ce
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ stdenv, buildPythonPackage, fetchPypi
, setuptools-git, pytest, six }:
, setuptools-git, pytest }:

buildPythonPackage rec {
pname = "pytest-fixture-config";
Expand All @@ -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.";
Expand Down

0 comments on commit 2c844ce

Please sign in to comment.