summary refs log tree commit diff
path: root/pkgs/development/python-modules/buildbot/default.nix
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2023-01-24 07:01:31 +0800
committerGitHub <noreply@github.com>2023-01-24 07:01:31 +0800
commite541bbaf077fe7c4b82a8c16021837c1da164da1 (patch)
tree55193948cc5916183f5dd14163c1aaf5594c231e /pkgs/development/python-modules/buildbot/default.nix
parentca7455728c01bc198b14a37fa5e06d2e765fd2d6 (diff)
parent76fb7480de6d5cd5995b0b5da1e7e19e4db010a9 (diff)
downloadnixpkgs-e541bbaf077fe7c4b82a8c16021837c1da164da1.tar
nixpkgs-e541bbaf077fe7c4b82a8c16021837c1da164da1.tar.gz
nixpkgs-e541bbaf077fe7c4b82a8c16021837c1da164da1.tar.bz2
nixpkgs-e541bbaf077fe7c4b82a8c16021837c1da164da1.tar.lz
nixpkgs-e541bbaf077fe7c4b82a8c16021837c1da164da1.tar.xz
nixpkgs-e541bbaf077fe7c4b82a8c16021837c1da164da1.tar.zst
nixpkgs-e541bbaf077fe7c4b82a8c16021837c1da164da1.zip
Merge pull request #211854 from JulienMalka/fix-buildbot-tests
buildbot: fix tests
Diffstat (limited to 'pkgs/development/python-modules/buildbot/default.nix')
-rw-r--r--pkgs/development/python-modules/buildbot/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/buildbot/default.nix b/pkgs/development/python-modules/buildbot/default.nix
index 7620da37b07..c1a0de71820 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 = {