test262/.travis.yml
Mike Pennisi 670a525fd6 Install linter dependencies in CI
Ensure that the linter's Python dependencies are satisfied in the
continuous integration environment.

Note that this is not currently necessary but only because the linter's
dependencies happen to align with those of the test generation tool. The
dependencies of the two tool should be satisfied explicitly in order to
promote isolation.
2017-12-02 23:05:23 -05:00

15 lines
375 B
YAML

language: python
install:
- pip install --requirement tools/generation/requirements.txt
- pip install --requirement tools/lint/requirements.txt
script:
- ./tools/scripts/ci_build.sh
- ./tools/generation/test/run.py
- ./tools/lint/test/run.py
- ./tools/scripts/ci_lint.sh
after_success:
- ./tools/scripts/deploy.sh
notifications:
email:
on_failure: always