1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 04:02:10 +00:00

Merge pull request #172179 from gador/fix-falcon

python3Packages.falcon: exclude tests
This commit is contained in:
davidak 2022-05-09 15:34:14 +02:00 committed by GitHub
commit f3f4dd14a6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -80,6 +80,11 @@ buildPythonPackage rec {
"tests"
];
disabledTestPaths = [
# needs a running server
"tests/asgi/test_asgi_servers.py"
];
meta = with lib; {
description = "An unladen web framework for building APIs and app backends";
homepage = "https://falconframework.org/";