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
commit 84a6d8a718
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;