From 74476a4995e0e8fd6de4781a6dfeecd7333a8c8c Mon Sep 17 00:00:00 2001 From: Jan David Mol <mol@astron.nl> Date: Wed, 6 Oct 2021 19:31:44 +0200 Subject: [PATCH] L2SS-412: Migrate integration tests to asyncua and asynctest --- devices/integration_test/base.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/devices/integration_test/base.py b/devices/integration_test/base.py index 92601ec2d..3583d1901 100644 --- a/devices/integration_test/base.py +++ b/devices/integration_test/base.py @@ -8,6 +8,7 @@ # See LICENSE.txt for more info. import unittest +import asynctest import testscenarios @@ -23,3 +24,9 @@ class IntegrationTestCase(BaseIntegrationTestCase): def setUp(self): super().setUp() + +class IntegrationAsyncTestCase(testscenarios.WithScenarios, asynctest.TestCase): + """Integration test case base class for all asyncio unit tests.""" + + def setUp(self): + super().setUp() -- GitLab