From 76fb7480de6d5cd5995b0b5da1e7e19e4db010a9 Mon Sep 17 00:00:00 2001 From: Julien Malka Date: Sat, 21 Jan 2023 18:40:16 +0100 Subject: buildbot: fix tests --- pkgs/development/python-modules/buildbot/default.nix | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'pkgs/development/python-modules/buildbot/default.nix') diff --git a/pkgs/development/python-modules/buildbot/default.nix b/pkgs/development/python-modules/buildbot/default.nix index c30e54aca99..8a59637363e 100644 --- a/pkgs/development/python-modules/buildbot/default.nix +++ b/pkgs/development/python-modules/buildbot/default.nix @@ -118,6 +118,9 @@ let substituteInPlace buildbot/scripts/logwatcher.py --replace '/usr/bin/tail' "$(type -P tail)" ''; + # Silence the depreciation warning from SqlAlchemy + SQLALCHEMY_SILENCE_UBER_WARNING = 1; + # TimeoutErrors on slow machines -> aarch64 doCheck = !stdenv.isAarch64; @@ -127,6 +130,8 @@ let # remove testfile which is missing configuration file from sdist rm buildbot/test/integration/test_graphql.py + # tests in this file are flaky, see https://github.com/buildbot/buildbot/issues/6776 + rm buildbot/test/integration/test_try_client.py ''; passthru = { -- cgit 1.4.1