summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-aiohttp
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-02-02 15:44:44 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-02-02 15:44:44 +0100
commitcb8eb4d1b2c6d2fb71c1a21ab48dfbc9e7590179 (patch)
treeee837f60298a6a60e69b5b0914b2049356792cfb /pkgs/development/python-modules/pytest-aiohttp
parent65170e9404c4253b04a54ede419c5d99975344ee (diff)
downloadnixlib-cb8eb4d1b2c6d2fb71c1a21ab48dfbc9e7590179.tar
nixlib-cb8eb4d1b2c6d2fb71c1a21ab48dfbc9e7590179.tar.gz
nixlib-cb8eb4d1b2c6d2fb71c1a21ab48dfbc9e7590179.tar.bz2
nixlib-cb8eb4d1b2c6d2fb71c1a21ab48dfbc9e7590179.tar.lz
nixlib-cb8eb4d1b2c6d2fb71c1a21ab48dfbc9e7590179.tar.xz
nixlib-cb8eb4d1b2c6d2fb71c1a21ab48dfbc9e7590179.tar.zst
nixlib-cb8eb4d1b2c6d2fb71c1a21ab48dfbc9e7590179.zip
pythonPackages.pytest-aiohttp: disable tests
Diffstat (limited to 'pkgs/development/python-modules/pytest-aiohttp')
-rw-r--r--pkgs/development/python-modules/pytest-aiohttp/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pytest-aiohttp/default.nix b/pkgs/development/python-modules/pytest-aiohttp/default.nix
index afdc085aa9f5..7f707ebc46b6 100644
--- a/pkgs/development/python-modules/pytest-aiohttp/default.nix
+++ b/pkgs/development/python-modules/pytest-aiohttp/default.nix
@@ -11,6 +11,9 @@ buildPythonPackage rec {
 
   propagatedBuildInputs = [ pytest aiohttp ];
 
+  # There are no tests
+  doCheck = false;
+
   meta = with stdenv.lib; {
     homepage = https://github.com/aio-libs/pytest-aiohttp/;
     description = "Pytest plugin for aiohttp support";