diff options
Diffstat (limited to 'testing/mozharness/tox.ini')
-rw-r--r-- | testing/mozharness/tox.ini | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/testing/mozharness/tox.ini b/testing/mozharness/tox.ini new file mode 100644 index 0000000000..32e5963f91 --- /dev/null +++ b/testing/mozharness/tox.ini @@ -0,0 +1,26 @@ +[tox] +envlist = py39-hg5.2 + +[base] +deps = + coverage + distro + nose + rednose + PyYAML==6.0 + {toxinidir}/../mozbase/mozlog +mozbase = {toxinidir}/../mozbase/ + + +[testenv] +setenv = + HGRCPATH = {toxinidir}/test/hgrc + PYTHONPATH = $PYTHONPATH:{[base]mozbase}/manifestparser:{[base]mozbase}/mozfile:{[base]mozbase}/mozinfo:{[base]mozbase}/mozprocess + +commands = + coverage run --source configs,mozharness,scripts --branch {envbindir}/nosetests -v --with-xunit --rednose --force-color {posargs} + +[testenv:py39-hg5.2] +deps = + {[base]deps} + mercurial==5.2.1 |