From 0225d2f5ba26b9d482534e945c9257ceaef77dfa Mon Sep 17 00:00:00 2001 From: Dariusz Kedzierski <dkedzierski@syncad.com> Date: Fri, 16 Oct 2020 19:11:51 +0200 Subject: [PATCH] Added missing schema --- .gitlab-ci.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci.yaml b/.gitlab-ci.yaml index 09bbe696a..e7c9e69ef 100644 --- a/.gitlab-ci.yaml +++ b/.gitlab-ci.yaml @@ -301,7 +301,7 @@ bridge_api_smoketest_benchmark: <<: *common_api_benchmarks script: - - tests/tests_api/hivemind/benchmarks/benchmark_generator.py tests/tests_api/hivemind/tavern/bridge_api_patterns/ api_benchmark_bridge.py "localhost:$HIVEMIND_HTTP_PORT" + - tests/tests_api/hivemind/benchmarks/benchmark_generator.py tests/tests_api/hivemind/tavern/bridge_api_patterns/ api_benchmark_bridge.py "http://localhost:$HIVEMIND_HTTP_PORT" - tox -e benchmark -- api_benchmark_bridge.py - scripts/xml_report_parser.py tests/tests_api/hivemind/tavern/bridge_api_patterns/ api_smoketest_bridge.xml @@ -314,7 +314,7 @@ bridge_api_smoketest_negative_benchmark: <<: *common_api_benchmarks script: - - tests/tests_api/hivemind/benchmarks/benchmark_generator.py tests/tests_api/hivemind/tavern/bridge_api_negative/ api_benchmark_bridge_negative.py "localhost:$HIVEMIND_HTTP_PORT" + - tests/tests_api/hivemind/benchmarks/benchmark_generator.py tests/tests_api/hivemind/tavern/bridge_api_negative/ api_benchmark_bridge_negative.py "http://localhost:$HIVEMIND_HTTP_PORT" - tox -e benchmark -- api_benchmark_bridge_negative.py - scripts/xml_report_parser.py tests/tests_api/hivemind/tavern/bridge_api_negative/ api_smoketest_bridge_negative.xml @@ -327,7 +327,7 @@ condenser_api_smoketest_benchmark: <<: *common_api_benchmarks script: - - tests/tests_api/hivemind/benchmarks/benchmark_generator.py tests/tests_api/hivemind/tavern/condenser_api_patterns/ api_benchmark_condenser.py "localhost:$HIVEMIND_HTTP_PORT" + - tests/tests_api/hivemind/benchmarks/benchmark_generator.py tests/tests_api/hivemind/tavern/condenser_api_patterns/ api_benchmark_condenser.py "http://localhost:$HIVEMIND_HTTP_PORT" - tox -e benchmark -- api_benchmark_condenser.py - scripts/xml_report_parser.py tests/tests_api/hivemind/tavern/condenser_api_patterns/ api_smoketest_condenser_api.xml @@ -340,7 +340,7 @@ condenser_api_smoketest_negative_benchmark: <<: *common_api_benchmarks script: - - tests/tests_api/hivemind/benchmarks/benchmark_generator.py tests/tests_api/hivemind/tavern/condenser_api_negative/ api_benchmark_condenser_negative.py "localhost:$HIVEMIND_HTTP_PORT" + - tests/tests_api/hivemind/benchmarks/benchmark_generator.py tests/tests_api/hivemind/tavern/condenser_api_negative/ api_benchmark_condenser_negative.py "http://localhost:$HIVEMIND_HTTP_PORT" - tox -e benchmark -- api_benchmark_condenser_negative.py - scripts/xml_report_parser.py tests/tests_api/hivemind/tavern/condenser_api_negative/ api_smoketest_condenser_api_negative.xml @@ -353,7 +353,7 @@ database_api_smoketest_benchmark: <<: *common_api_benchmarks script: - - tests/tests_api/hivemind/benchmarks/benchmark_generator.py tests/tests_api/hivemind/tavern/database_api_patterns/ api_benchmark_database.py "localhost:$HIVEMIND_HTTP_PORT" + - tests/tests_api/hivemind/benchmarks/benchmark_generator.py tests/tests_api/hivemind/tavern/database_api_patterns/ api_benchmark_database.py "http://localhost:$HIVEMIND_HTTP_PORT" - tox -e benchmark -- api_benchmark_database.py - scripts/xml_report_parser.py tests/tests_api/hivemind/tavern/database_api_patterns/ api_smoketest_database_api.xml @@ -366,7 +366,7 @@ database_api_smoketest_negative_benchmark: <<: *common_api_benchmarks script: - - tests/tests_api/hivemind/benchmarks/benchmark_generator.py tests/tests_api/hivemind/tavern/database_api_negative/ api_benchmark_database_negative.py "localhost:$HIVEMIND_HTTP_PORT" + - tests/tests_api/hivemind/benchmarks/benchmark_generator.py tests/tests_api/hivemind/tavern/database_api_negative/ api_benchmark_database_negative.py "http://localhost:$HIVEMIND_HTTP_PORT" - tox -e benchmark -- api_benchmark_database_negative.py - scripts/xml_report_parser.py tests/tests_api/hivemind/tavern/database_api_negative/ api_smoketest_database_api_negative.xml @@ -379,7 +379,7 @@ follow_api_smoketest_benchmark: <<: *common_api_benchmarks script: - - tests/tests_api/hivemind/benchmarks/benchmark_generator.py tests/tests_api/hivemind/tavern/follow_api_patterns/ api_benchmark_follow.py "localhost:$HIVEMIND_HTTP_PORT" + - tests/tests_api/hivemind/benchmarks/benchmark_generator.py tests/tests_api/hivemind/tavern/follow_api_patterns/ api_benchmark_follow.py "http://localhost:$HIVEMIND_HTTP_PORT" - tox -e benchmark -- api_benchmark_follow.py - scripts/xml_report_parser.py tests/tests_api/hivemind/tavern/follow_api_patterns/ api_smoketest_follow_api.xml -- GitLab