From d46a6a8d28269c7fbf42386d9af4e99eff4605a8 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sun, 23 May 2021 14:29:09 +0100 Subject: [PATCH] python3Packages.scrapy: disable flaky test this test will fail if /tmp/foobar already exists owned by a different user. technically only observed to be a problem on darwin but in theory any system not using namespaced /tmp for their builder could run into this. --- pkgs/development/python-modules/scrapy/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/scrapy/default.nix b/pkgs/development/python-modules/scrapy/default.nix index 6887eded3bfd..08a3a5967329 100644 --- a/pkgs/development/python-modules/scrapy/default.nix +++ b/pkgs/development/python-modules/scrapy/default.nix @@ -80,6 +80,7 @@ buildPythonPackage rec { "test_retry_dns_error" "test_custom_asyncio_loop_enabled_true" "test_custom_loop_asyncio" + "FileFeedStoragePreFeedOptionsTest" # https://github.com/scrapy/scrapy/issues/5157 ] ++ lib.optionals stdenv.isDarwin [ "test_xmliter_encoding" "test_download"