Merge pull request #34777 from dotlambda/pytest-httpbin

pythonPackages.pytest-httpbin: actually run tests
This commit is contained in:
Frederik Rietdijk
2018-02-09 19:42:58 +00:00
committed by GitHub

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;