Skip to content
Snippets Groups Projects
Commit 800fd33d authored by jurgenhaas's avatar jurgenhaas
Browse files

#6 Allow to disable test tasks individually

parent f2aa4a00
No related branches found
No related tags found
No related merge requests found
......@@ -34,14 +34,14 @@ Build Theme:
Test Code Style:
extends: '.codestyle'
#Test PHPUnit:
# extends: '.phpunit'
Test PHPUnit:
extends: '.phpunit'
#Test Behat:
# extends: '.behat'
Test Behat:
extends: '.behat'
#Test Backstop:
# extends: '.backstop'
Test Backstop:
extends: '.backstop'
Deploy:
extends: '.deployartefact'
......@@ -307,6 +307,7 @@ stages:
- $CI_COMMIT_MESSAGE =~ /^Merge tag /i
- $CAE
- $DISABLE_CI_TESTS
- $DISABLE_CI_TEST_CODESTYLE
.phpunit:
stage: test
......@@ -336,6 +337,7 @@ stages:
- $CI_COMMIT_MESSAGE =~ /^Merge tag /i
- $CAE
- $DISABLE_CI_TESTS
- $DISABLE_CI_TEST_PHPUNIT
.behat:
stage: test
......@@ -366,6 +368,7 @@ stages:
- $CI_COMMIT_MESSAGE =~ /^Merge tag /i
- $CAE
- $DISABLE_CI_TESTS
- $DISABLE_CI_TEST_BEHAT
.backstop:
stage: test
......@@ -391,6 +394,7 @@ stages:
- $CI_COMMIT_MESSAGE =~ /^Merge tag /i
- $CAE
- $DISABLE_CI_TESTS
- $DISABLE_CI_TEST_BACKSTOP
.deploy:
stage: deploy
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment