add buildbot extension for autoscaling nix builders
This commit is contained in:
parent
ea12318b88
commit
d1976a5fd8
13 changed files with 2300 additions and 8 deletions
11
buildbot-ext/buildbot_autoscale_ext/tests/__init__.py
Normal file
11
buildbot-ext/buildbot_autoscale_ext/tests/__init__.py
Normal 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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue