From c4c815949e9524437557dc3fb7a57ec6b4f094f2 Mon Sep 17 00:00:00 2001 From: Jason Frey Date: Tue, 19 Nov 2019 21:43:59 -0500 Subject: [PATCH] Move TEST_REPO into the matrix section by default --- .travis.yml | 3 ++- README.md | 17 +++++++++-------- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9a522d40..0c95db26 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,6 +14,7 @@ matrix: fast_finish: true env: global: - - TEST_REPO= - CORE_REPO= - GEM_REPOS= + matrix: + - TEST_REPO= diff --git a/README.md b/README.md index cf12582f..2249346c 100644 --- a/README.md +++ b/README.md @@ -16,29 +16,30 @@ For more information about the variables or more examples, refer to the #### Testing a single repo in the context of ManageIQ PR 12345 ```diff -@@ -11,6 +11,5 @@ matrix: +@@ -14,7 +14,7 @@ matrix: fast_finish: true env: global: -- - TEST_REPO= - - CORE_REPO= -- - GEM_REPOS= -+ - TEST_REPO=manageiq-ui-classic + - CORE_REPO=manageiq@12345 + - GEM_REPOS= + matrix: +- - TEST_REPO= ++ - TEST_REPO=manageiq-ui-classic ``` #### Testing multiple repos in the context of ManageIQ PR 12345 ```diff -@@ -11,6 +11,7 @@ matrix: +@@ -14,7 +14,8 @@ matrix: fast_finish: true env: global: -- - TEST_REPO= - - CORE_REPO= -- - GEM_REPOS= + - CORE_REPO=manageiq@12345 -+ matrix: + - GEM_REPOS= + matrix: +- - TEST_REPO= + - TEST_REPO=manageiq-ui-classic + - TEST_REPO=manageiq-api ```