diff --git a/tangostationcontrol/tangostationcontrol/integration_test/default/prometheus/test_tango_prometheus_client.py b/tangostationcontrol/tangostationcontrol/integration_test/default/prometheus/test_tango_prometheus_client.py index 20056c49455b4f33e48febfd415ca9e629f94c20..857e5830dcf290d8b4e6ec36d352dad36b1a613d 100644 --- a/tangostationcontrol/tangostationcontrol/integration_test/default/prometheus/test_tango_prometheus_client.py +++ b/tangostationcontrol/tangostationcontrol/integration_test/default/prometheus/test_tango_prometheus_client.py @@ -7,14 +7,15 @@ # Distributed under the terms of the APACHE license. # See LICENSE.txt for more info. -from tangostationcontrol.integration_test.base import BaseIntegrationTestCase -from tangostationcontrol.integration_test.device_proxy import TestDeviceProxy - -from tango import Database import importlib import sys, os import numpy +from tango import Database + +from tangostationcontrol.integration_test.base import BaseIntegrationTestCase +from tangostationcontrol.integration_test.device_proxy import TestDeviceProxy + module_name = 'ArchiverPolicy' file_path = os.path.join(os.path.realpath('..'), 'docker-compose/tango-prometheus-exporter/code/tango-prometheus-client.py') spec = importlib.util.spec_from_file_location(module_name, file_path)