From e0476c2512b5b0a71d1c6b6ea53f81ed608c7019 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Tue, 19 Jul 2016 10:12:30 -0400 Subject: [PATCH] pythonPackages.moto: add checkPhase, but leave it turned off Someday we'll turn it on, but the side-effecting tests aren't going to work on Hydra right now. --- pkgs/top-level/python-packages.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c46c5d3c8c6..9b222cae354 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -13058,6 +13058,11 @@ in modules // { # For tests nose sure boto3 freezegun ]; + + checkPhase = "nosetests"; + + # TODO: make this true; I think lots of the tests want network access but we can probably run the others + doCheck = false; };