summary refs log tree commit diff
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2017-08-28 12:19:30 +0100
committerJörg Thalheim <joerg@thalheim.io>2017-08-28 12:21:13 +0100
commit99ffd2051e853963f98ef28cb806bce685a1f6ec (patch)
tree9e70a75b2a4839d642c12a2e1c5bd132387455de
parent49b17a81270535179458050ff648064edf87be0f (diff)
downloadnixlib-99ffd2051e853963f98ef28cb806bce685a1f6ec.tar
nixlib-99ffd2051e853963f98ef28cb806bce685a1f6ec.tar.gz
nixlib-99ffd2051e853963f98ef28cb806bce685a1f6ec.tar.bz2
nixlib-99ffd2051e853963f98ef28cb806bce685a1f6ec.tar.lz
nixlib-99ffd2051e853963f98ef28cb806bce685a1f6ec.tar.xz
nixlib-99ffd2051e853963f98ef28cb806bce685a1f6ec.tar.zst
nixlib-99ffd2051e853963f98ef28cb806bce685a1f6ec.zip
python.pkgs.pyramid_beaker: fix tests
-rw-r--r--pkgs/development/python-modules/pyramid_beaker/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/pyramid_beaker/default.nix b/pkgs/development/python-modules/pyramid_beaker/default.nix
index 517f068edd9c..a95c67b96d29 100644
--- a/pkgs/development/python-modules/pyramid_beaker/default.nix
+++ b/pkgs/development/python-modules/pyramid_beaker/default.nix
@@ -12,7 +12,7 @@ buildPythonPackage rec {
 
   checkPhase = ''
     # https://github.com/Pylons/pyramid_beaker/issues/29
-    py.test -k 'not test_includeme'
+    py.test -k 'not test_includeme' pyramid_beaker/tests.py
   '';
 
   buildInputs = [ pytest ];