0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

Revert "pythonPackages.tornado: re-enable tests that no longer fail"

This reverts commit b666247a30.
This commit is contained in:
Marco "Capypara" Köpcke 2025-05-30 10:12:47 +02:00
parent b666247a30
commit f63bc93c36
No known key found for this signature in database
GPG key ID: 08131EE895D53BDB

View file

@ -38,6 +38,14 @@ buildPythonPackage rec {
# additional tests that have extra dependencies, run slowly, or produce more output than a simple pass/fail
# https://github.com/tornadoweb/tornado/blob/v6.2.0/maint/test/README
"maint/test"
# AttributeError: 'TestIOStreamWebMixin' object has no attribute 'io_loop'
"tornado/test/iostream_test.py"
];
disabledTests = [
# Exception: did not get expected log message
"test_unix_socket_bad_request"
];
pythonImportsCheck = [ "tornado" ];