about summary refs log tree commit diff
path: root/pkgs/development/python-modules/streamz
diff options
context:
space:
mode:
authorSilvan Mosberger <infinisil@icloud.com>2019-05-27 18:58:01 +0200
committerSilvan Mosberger <infinisil@icloud.com>2019-05-27 19:11:35 +0200
commit9253e2883f8b95224f3b2ebd7424361f7bb6fb16 (patch)
tree0f1cb79f76cef702cd9abef39d6ebbe4afee6901 /pkgs/development/python-modules/streamz
parent2dd05f18c75658ea405b967acdf343302096439b (diff)
pythonPackages.streamz: Fix build
Can't test tcp in the sandbox
Diffstat (limited to 'pkgs/development/python-modules/streamz')
-rw-r--r--pkgs/development/python-modules/streamz/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/streamz/default.nix b/pkgs/development/python-modules/streamz/default.nix
index 87de719025dc7..5360b951de262 100644
--- a/pkgs/development/python-modules/streamz/default.nix
+++ b/pkgs/development/python-modules/streamz/default.nix
@@ -31,7 +31,8 @@ buildPythonPackage rec {
 
   # Disable test_tcp_async because fails on sandbox build
   checkPhase = ''
-    pytest --deselect=streamz/tests/test_sources.py::test_tcp_async
+    pytest --deselect=streamz/tests/test_sources.py::test_tcp_async \
+      --deselect=streamz/tests/test_sources.py::test_tcp
   '';
 
   meta = with lib; {