Browse Source

Try to selectively run some tests.

x
MOODLE_33_STABLE
Dan Marsden 8 years ago
parent
commit
40f62ee3a8
  1. 21
      .travis.yml

21
.travis.yml

@ -11,13 +11,14 @@ php:
- 7.0
matrix:
fast_finish: true
allow_failures:
- php: 5.6 # travis seems to fail on adding activity - doesn't fail when running behat locally.
env:
matrix:
- DB=pgsql MOODLE_BRANCH=master
- DB=mysqli MOODLE_BRANCH=master
- DB=pgsql MOODLE_BRANCH=master TASK=PHP
- DB=mysqli MOODLE_BRANCH=master TASK=codecheck
before_install:
- phpenv config-rm xdebug.ini
@ -30,6 +31,16 @@ install:
- moodle-plugin-ci install
script:
- >
if [ "$TASK" = 'PHP' ];
then
- moodle-plugin-ci phplint
- moodle-plugin-ci phpcpd
- moodle-plugin-ci phpmd
fi
- >
if [ "$TASK" = 'codecheck' ];
then
- moodle-plugin-ci phplint
- moodle-plugin-ci phpcpd
- moodle-plugin-ci phpmd
@ -38,5 +49,7 @@ script:
- moodle-plugin-ci shifter
- moodle-plugin-ci jshint
- moodle-plugin-ci validate
- moodle-plugin-ci phpunit
- moodle-plugin-ci behat
fi
- moodle-plugin-ci phpunit
- moodle-plugin-ci behat

Loading…
Cancel
Save