pythonPackages.pytest-httpbin: actually run tests

This commit is contained in:
Robert Schütz 2018-02-09 20:37:56 +01:00
parent 1cba74dfc1
commit 6ae627b01e

View file

@ -24,6 +24,10 @@ buildPythonPackage rec {
propagatedBuildInputs = [ flask decorator httpbin six requests ];
checkPhase = ''
py.test
'';
meta = {
description = "Easily test your HTTP library against a local copy of httpbin.org";
homepage = https://github.com/kevin1024/pytest-httpbin;