pythonPackages.txaio: disable test_chained_callback test as it is removed upstream (#26288)
because it breaks under python3.6
This commit is contained in:
parent
4414ac8448
commit
a0a6187a18
1 changed files with 3 additions and 1 deletions
|
@ -18,8 +18,10 @@ buildPythonPackage rec {
|
||||||
sed -i '152d' test/test_logging.py
|
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 = ''
|
checkPhase = ''
|
||||||
py.test -k "not test_sdist"
|
py.test -k "not (test_sdist or test_chained_callback)"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
|
Loading…
Reference in a new issue