2015-10-15 01:47:42 +02:00
|
|
|
#!/bin/bash
|
2016-07-18 23:22:10 +02:00
|
|
|
|
|
|
|
source tools/travis/activate-venv
|
|
|
|
|
2015-10-15 01:47:42 +02:00
|
|
|
set -e
|
|
|
|
set -x
|
2016-07-18 23:22:10 +02:00
|
|
|
|
2017-08-25 15:25:51 +02:00
|
|
|
./tools/lint --frontend
|
2017-06-07 04:24:39 +02:00
|
|
|
./tools/test-js-with-node --coverage
|
2015-10-15 01:47:42 +02:00
|
|
|
./tools/test-js-with-casper
|
2017-07-25 04:46:15 +02:00
|
|
|
|
|
|
|
# NB: Everything here should be in `tools/test-all`. If there's a
|
|
|
|
# reason not to run it there, it should be there as a comment
|
|
|
|
# explaining why.
|