From 25b4b3523251373802ae237564b60a2ac644010b Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 27 Apr 2016 20:29:30 +0200 Subject: [PATCH] betamax: Disable tests As said in #15037, the tests fail due to a network error as the tests expect to have network access. This simply disables the tests, which is not optimal, of course. I do not understand the whole python infrastructure, so I'm not able to disable only the failing-because-of-network-access tests. --- pkgs/top-level/python-packages.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 447481db7b38..b25874678c59 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1717,6 +1717,8 @@ in modules // { propagatedBuildInputs = [ self.requests2 ]; + doCheck = false; + meta = with stdenv.lib; { homepage = https://betamax.readthedocs.org/en/latest/; description = "A VCR imitation for requests";