Last active
July 25, 2024 12:35
-
-
Save testautomation/c7899c234657469ef0ebf2f14f92095f to your computer and use it in GitHub Desktop.
Revisions
-
testautomation revised this gist
Nov 7, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -25,7 +25,7 @@ workflows: - test-suit-2 - test-suit-3 - test-suit-4 ignore_previous_status: true pre-steps: - attach-test-results ``` -
testautomation created this gist
Nov 7, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,31 @@ # simlified .circleci/config.yml ```yaml workflows: parallel-robot-tests: jobs: - build-artifacts: - test-suit-1: post-steps: - persist-test-results - test-suit-2: post-steps: - persist-test-results - test-suit-3: post-steps: - persist-test-results - test-suit-3: post-steps: - persist-test-results - ROBOT-REPORT: requires: - test-suit-1 - test-suit-2 - test-suit-3 - test-suit-4 ignore_previous_fails: true pre-steps: - attach-test-results ```