1234567891011121314151617181920 |
- #!/bin/bash
- set -ex
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start || true
- npm run clean
- npm run build
- npm run build:examples
- npm test
- npm run test:coverage
- export PATH="$HOME/miniconda/bin:$PATH"
- npm run test:integration
- pushd examples/node
- python main.py
- popd
- if [[ $TRAVIS_NODE_VERSION == "5.1" ]]; then
- npm run docs
- fi
|