From 9d4632f096fdd9db92cfbae27c291bbb80b2a0fe Mon Sep 17 00:00:00 2001 From: ABW <andrzejl@syncad.com> Date: Thu, 3 Sep 2020 13:00:34 +0200 Subject: [PATCH] [ABW]: added separate tests to CI (all tests will eventually be run through folders instead of common .yaml file) --- .gitlab-ci.yaml | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yaml b/.gitlab-ci.yaml index 01a620725..6bc5b2b31 100644 --- a/.gitlab-ci.yaml +++ b/.gitlab-ci.yaml @@ -194,11 +194,21 @@ condenser_api_smoketest: reports: junit: api_smoketest_condenser_api.xml +database_api_smoketest_old: + <<: *common_api_smoketest_job + + script: + - scripts/ci_start_api_smoketest.sh localhost "$HIVEMIND_HTTP_PORT" test_database_api_patterns.tavern.yaml api_smoketest_database_api_old.xml + + artifacts: + reports: + junit: api_smoketest_database_api_old.xml + database_api_smoketest: <<: *common_api_smoketest_job script: - - scripts/ci_start_api_smoketest.sh localhost "$HIVEMIND_HTTP_PORT" test_database_api_patterns.tavern.yaml api_smoketest_database_api.xml + - scripts/ci_start_api_smoketest.sh localhost "$HIVEMIND_HTTP_PORT" database_api_patterns/ api_smoketest_database_api.xml artifacts: reports: @@ -214,13 +224,24 @@ follow_api_smoketest: reports: junit: api_smoketest_follow_api.xml +tags_api_smoketest_old: + <<: *common_api_smoketest_job + + script: + - scripts/ci_start_api_smoketest.sh localhost "$HIVEMIND_HTTP_PORT" test_tags_api_patterns.tavern.yaml api_smoketest_tags_api_old.xml + + artifacts: + reports: + junit: api_smoketest_tags_api_old.xml + tags_api_smoketest: <<: *common_api_smoketest_job script: - - scripts/ci_start_api_smoketest.sh localhost "$HIVEMIND_HTTP_PORT" test_tags_api_patterns.tavern.yaml api_smoketest_tags_api.xml + - scripts/ci_start_api_smoketest.sh localhost "$HIVEMIND_HTTP_PORT" tags_api_patterns/ api_smoketest_tags_api.xml artifacts: reports: junit: api_smoketest_tags_api.xml + -- GitLab