We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent 4414ac8 commit a0a6187Copy full SHA for a0a6187
pkgs/development/python-modules/txaio/default.nix
@@ -18,8 +18,10 @@ buildPythonPackage rec {
18
sed -i '152d' test/test_logging.py
19
'';
20
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
23
checkPhase = ''
- py.test -k "not test_sdist"
24
+ py.test -k "not (test_sdist or test_chained_callback)"
25
26
27
meta = with stdenv.lib; {
0 commit comments