Skip to content

Commit a0a6187

Browse files
risicleMic92
authored andcommittedMay 31, 2017
pythonPackages.txaio: disable test_chained_callback test as it is removed upstream (#26288)
because it breaks under python3.6
1 parent 4414ac8 commit a0a6187

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎pkgs/development/python-modules/txaio/default.nix

+3-1
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,10 @@ buildPythonPackage rec {
1818
sed -i '152d' test/test_logging.py
1919
'';
2020

21+
# test_chained_callback has been removed just post-2.7.1 because the functionality was decided against and the test
22+
# breaks on python 3.6 https://github.com/crossbario/txaio/pull/104
2123
checkPhase = ''
22-
py.test -k "not test_sdist"
24+
py.test -k "not (test_sdist or test_chained_callback)"
2325
'';
2426

2527
meta = with stdenv.lib; {

0 commit comments

Comments
 (0)
Please sign in to comment.