11 lines
236 B
Python
11 lines
236 B
Python
"""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)
|