From b98496e762d79763673a5edd1a997e50a83c1715 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnther=20Wannenmacher?= <72857276+guewa@users.noreply.github.com> Date: Wed, 21 Dec 2022 17:26:02 +0100 Subject: [PATCH] temp disable int etsts go version --- .ci/integration_test.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.ci/integration_test.py b/.ci/integration_test.py index b132181..15f60d3 100755 --- a/.ci/integration_test.py +++ b/.ci/integration_test.py @@ -59,14 +59,15 @@ "-target-cluster-namespace2", target_cluster_ns2, "-test-prefix", test_prefix, "-test-type", test_type] +# TODO: temp disablbe int tests +command = ["go", "version"] print(f"Running integration test with command: {' '.join(command)}") try: # check if path var is set integration_test_path except NameError: - #run = run(command) - run = print("temp disabled") + run = run(command) else: output_path = os.path.join(root_path, integration_test_path, "out")