Bug 1460402 - Update the CI to use codespell with pip instead of the apt packages (too old) r=ahal

MozReview-Commit-ID: 9QkTPyP7izS

--HG--
extra : rebase_source : 23d87e6b352378aa41e8c539ce8640da68fe604c
This commit is contained in:
Sylvestre Ledru 2018-05-09 21:57:36 +02:00
parent b86503f980
commit a7f37d6509
2 changed files with 9 additions and 2 deletions

View File

@ -7,8 +7,8 @@ path:taskcluster/
path:python/mozbuild/mozbuild/action/tooltool.py
path:testing/config/tooltool-manifests/linux64/releng.manifest
path:testing/mozharness/external_tools/robustcheckout.py
path:tools/lint/spell/codespell_requirements.txt
path:tools/lint/eslint/eslint-plugin-mozilla/manifest.tt
path:tools/lint/eslint/manifest.tt
path:tools/lint/python/flake8_requirements.txt
path:tools/lint/tox/tox_requirements.txt

View File

@ -10,7 +10,6 @@ mkdir -p /setup
cd /setup
apt_packages=()
apt_packages+=('codespell')
apt_packages+=('curl')
apt_packages+=('locales')
apt_packages+=('git')
@ -88,6 +87,14 @@ cd /setup
pip install --require-hashes -r /tmp/flake8_requirements.txt
###
# codespell Setup
###
cd /setup
pip install --require-hashes -r /tmp/codespell_requirements.txt
###
# tox Setup
###