# HG changeset patch # User Augie Fackler # Date 1466972047 14400 # Node ID be8f446f94e56d333c9fdd2db382eef986b275e1 # Parent 6088597abd20b84d1782908682fddc1f8a65521d testing: add tox config to easily run tests against many hg versions We've shipped a couple of minor regressions here and there, but now it's easy to avoid. diff --git a/tox.ini b/tox.ini new file mode 100644 --- /dev/null +++ b/tox.ini @@ -0,0 +1,18 @@ +[tox] +envlist = hg28,hg30,hg31,hg32,hg33,hg34,hg35,hg36,hg37,hg38 + +[testenv] +deps= + nose + hg28: Mercurial==2.8.2 + hg30: Mercurial==3.0.1 + hg31: Mercurial==3.1.2 + hg32: Mercurial==3.2.4 + hg33: Mercurial==3.3.3 + hg34: Mercurial==3.4.2 + hg35: Mercurial==3.5.2 + hg36: Mercurial==3.6.3 + hg37: Mercurial==3.7.3 + hg38: Mercurial==3.8.3 + subvertpy +commands=nosetests {posargs}