Browse Source

attempt to speed up travis by selectively running some tests.

MOODLE_33_STABLE
Dan Marsden 8 years ago
parent
commit
f32cc34da6
  1. 14
      .travis.yml

14
.travis.yml

@ -11,7 +11,6 @@ php:
- 7.0 - 7.0
matrix: matrix:
fast_finish: true
allow_failures: allow_failures:
- php: 5.6 # travis seems to fail on adding activity - doesn't fail when running behat locally. - php: 5.6 # travis seems to fail on adding activity - doesn't fail when running behat locally.
@ -34,9 +33,9 @@ script:
- > - >
if [ "$TASK" = 'PHP' ]; if [ "$TASK" = 'PHP' ];
then then
- moodle-plugin-ci phplint moodle-plugin-ci phplint
- moodle-plugin-ci phpcpd moodle-plugin-ci phpcpd
- moodle-plugin-ci phpmd moodle-plugin-ci phpmd
fi fi
- > - >
if [ "$TASK" = 'codecheck' ]; if [ "$TASK" = 'codecheck' ];
@ -49,7 +48,6 @@ script:
- moodle-plugin-ci shifter - moodle-plugin-ci shifter
- moodle-plugin-ci jshint - moodle-plugin-ci jshint
- moodle-plugin-ci validate - moodle-plugin-ci validate
fi - moodle-plugin-ci phpunit
- moodle-plugin-ci behat
- moodle-plugin-ci phpunit fi
- moodle-plugin-ci behat
Loading…
Cancel
Save