mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 06:11:37 +00:00
6d562751b4
We had a test environment running on Python 2.6 and an ancient version of Mercurial. AFAICT we run Python 2.7 everywhere, so this environment can be dropped. We also upgrade to Mercurial 3.7.3, as that is what automation now runs. MozReview-Commit-ID: 7WTyD3CUjtj --HG-- extra : rebase_source : 28994488cc1ffbc779ac4f25ec0cbbd2749d169d extra : histedit_source : bdd034b5c2d3cc479f58b614cf368372c81c8896
28 lines
453 B
INI
28 lines
453 B
INI
[tox]
|
|
envlist = py27-hg3.7
|
|
|
|
[base]
|
|
deps =
|
|
coverage
|
|
nose
|
|
rednose
|
|
|
|
[testenv]
|
|
basepython = python2.7
|
|
setenv =
|
|
HGRCPATH = {toxinidir}/test/hgrc
|
|
|
|
commands =
|
|
coverage run --source configs,mozharness,scripts --branch {envbindir}/nosetests -v --with-xunit --rednose --force-color {posargs}
|
|
|
|
[testenv:py27-hg3.7]
|
|
deps =
|
|
{[base]deps}
|
|
mercurial==3.7.3
|
|
|
|
[testenv:py27-coveralls]
|
|
deps=
|
|
python-coveralls==2.4.3
|
|
commands=
|
|
coveralls
|