Files
PyRIGS/.travis.yml
Tom Price cb2259ff1d Add missing run command.
No idea what it was tying to build, but it was building something.
2017-05-09 14:11:41 +01:00

26 lines
569 B
YAML

language: node_js
node_js:
"6"
python:
"2.7"
before_install:
- "export DISPLAY=:99.0"
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16"
install:
- pip install --user -r requirements.txt
- pip install --user coveralls codeclimate-test-reporter
- npm install
- npm run build
before_script:
- python manage.py collectstatic --noinput
script:
- coverage run manage.py test RIGS
after_success:
- coveralls
- codeclimate-test-reporter