From 020766632d205bcb4e90bd76f0146751b123fab2 Mon Sep 17 00:00:00 2001 From: Dieter Verhelst Date: Tue, 12 Mar 2019 12:33:37 +0100 Subject: [PATCH] Parallelize travis --- .travis.yml | 25 ++++++++----------------- 1 file changed, 8 insertions(+), 17 deletions(-) diff --git a/.travis.yml b/.travis.yml index 724605f..7aec557 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,20 +14,11 @@ install: - pip install ansible - pip install docker -jobs: - include: - - stage: "Exclude / Include paths" - name: "Exclude / Include paths" - script: molecule test --scenario-name folders - - stage: "Test default LAMP" - name: "Test default LAMP" - script: molecule test --scenario-name lamp - - stage: "Test Management Station" - name: "Test Management Station" - script: molecule test --scenario-name mgt - - stage: "Test Multiple Backup Targets" - name: "Test Multiple Backup Targets" - script: molecule test --scenario-name multiple - - stage: "Testing a variety of different platforms" - name: "Testing a variety of different platforms" - script: molecule test --scenario-name clients +env: + - SCENARIO=folders + - SCENARIO=lamp + - SCENARIO=mgt + - SCENARIO=multiple + - SCENARIO=clients + +script: "molecule test --scenario-name $SCENARIO"