summary refs log tree commit diff
path: root/pkgs/development/python-modules/txaio
diff options
context:
space:
mode:
authorrisicle <github@humanleg.org.uk>2017-06-01 00:25:07 +0100
committerJörg Thalheim <Mic92@users.noreply.github.com>2017-06-01 00:25:07 +0100
commita0a6187a186532da89fa4306db37d9c8fd381c0a (patch)
tree4cc0f77fed7816cb7fb8fb32037350a0cacfdd27 /pkgs/development/python-modules/txaio
parent4414ac84489c1c96fa0284541c60655c4e6be074 (diff)
downloadnixpkgs-a0a6187a186532da89fa4306db37d9c8fd381c0a.tar
nixpkgs-a0a6187a186532da89fa4306db37d9c8fd381c0a.tar.gz
nixpkgs-a0a6187a186532da89fa4306db37d9c8fd381c0a.tar.bz2
nixpkgs-a0a6187a186532da89fa4306db37d9c8fd381c0a.tar.lz
nixpkgs-a0a6187a186532da89fa4306db37d9c8fd381c0a.tar.xz
nixpkgs-a0a6187a186532da89fa4306db37d9c8fd381c0a.tar.zst
nixpkgs-a0a6187a186532da89fa4306db37d9c8fd381c0a.zip
pythonPackages.txaio: disable test_chained_callback test as it is removed upstream (#26288)
because it breaks under python3.6
Diffstat (limited to 'pkgs/development/python-modules/txaio')
-rw-r--r--pkgs/development/python-modules/txaio/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/txaio/default.nix b/pkgs/development/python-modules/txaio/default.nix
index 68cb28dc850..98060536638 100644
--- a/pkgs/development/python-modules/txaio/default.nix
+++ b/pkgs/development/python-modules/txaio/default.nix
@@ -18,8 +18,10 @@ buildPythonPackage rec {
     sed -i '152d' test/test_logging.py
   '';
 
+  # test_chained_callback has been removed just post-2.7.1 because the functionality was decided against and the test
+  # breaks on python 3.6 https://github.com/crossbario/txaio/pull/104
   checkPhase = ''
-    py.test -k "not test_sdist"
+    py.test -k "not (test_sdist or test_chained_callback)"
   '';
 
   meta = with stdenv.lib; {