From 9c477c5e569c44d808500c8ae70434076483000c Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Mon, 6 May 2024 01:05:48 +0200 Subject: [PATCH] pretix: disable unreliable test --- pkgs/by-name/pr/pretix/package.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/by-name/pr/pretix/package.nix b/pkgs/by-name/pr/pretix/package.nix index d97d2a68bde5..a45fdbdf2ff3 100644 --- a/pkgs/by-name/pr/pretix/package.nix +++ b/pkgs/by-name/pr/pretix/package.nix @@ -213,6 +213,11 @@ python.pkgs.buildPythonApplication rec { "--reruns" "3" ]; + disabledTests = [ + # unreliable around day changes + "test_order_create_invoice" + ]; + preCheck = '' export PYTHONPATH=$(pwd)/src:$PYTHONPATH export DJANGO_SETTINGS_MODULE=tests.settings