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 ```