add buildbot extension for autoscaling nix builders

This commit is contained in:
Abel Luck 2026-02-27 12:17:36 +01:00
parent ea12318b88
commit d1976a5fd8
13 changed files with 2300 additions and 8 deletions

View file

@ -0,0 +1,11 @@
"""Tests for buildbot_autoscale_ext."""
import asyncio
from contextlib import suppress
from twisted.internet import asyncioreactor
TEST_LOOP = asyncio.new_event_loop()
with suppress(Exception):
asyncioreactor.install(TEST_LOOP)