python310Packages.scapy: disable failing tests

main
Fabian Affolter 2 years ago
parent 58fe89e846
commit 99a8b82a6a
  1. 4
      pkgs/development/python-modules/scrapy/default.nix

@ -31,6 +31,8 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "scrapy"; pname = "scrapy";
version = "2.6.1"; version = "2.6.1";
format = "setuptools";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.6";
src = fetchPypi { src = fetchPypi {
@ -92,6 +94,7 @@ buildPythonPackage rec {
"test_nested_xpath" "test_nested_xpath"
"test_flavor_detection" "test_flavor_detection"
# Requires network access # Requires network access
"AnonymousFTPTestCase"
"FTPFeedStorageTest" "FTPFeedStorageTest"
"FeedExportTest" "FeedExportTest"
"test_custom_asyncio_loop_enabled_true" "test_custom_asyncio_loop_enabled_true"
@ -99,6 +102,7 @@ buildPythonPackage rec {
"test_custom_loop_asyncio_deferred_signal" "test_custom_loop_asyncio_deferred_signal"
"FileFeedStoragePreFeedOptionsTest" # https://github.com/scrapy/scrapy/issues/5157 "FileFeedStoragePreFeedOptionsTest" # https://github.com/scrapy/scrapy/issues/5157
"test_timeout_download_from_spider_nodata_rcvd" "test_timeout_download_from_spider_nodata_rcvd"
"test_timeout_download_from_spider_server_hangs"
# Fails with AssertionError # Fails with AssertionError
"test_peek_fifo" "test_peek_fifo"
"test_peek_one_element" "test_peek_one_element"

Loading…
Cancel
Save