mirror of
https://github.com/tc39/test262.git
synced 2025-08-18 00:18:26 +02:00
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.
15 lines
375 B
YAML
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
|