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.
This commit is contained in:
Mike Pennisi 2017-12-02 23:05:23 -05:00
parent 8311965251
commit 670a525fd6
1 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
language: python
install: pip install --requirement tools/generation/requirements.txt
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