Mercurial > hgsubversion
annotate tox.ini @ 1490:bc73b80baf98
SqliteRevMap: wait indefinitely for database lock
Python sqlite has 5 seconds timeout by default, which means if a writer holds
the lock, and the second writer will error out after 5 seconds.
In our use-case, it makes sense to just wait. However, sqlite does not support
waiting forever (see sqlite3_busy_timeout). Therefore use a while loop to
workaround.
author | Jun Wu <quark@fb.com> |
---|---|
date | Tue, 19 Jul 2016 20:34:11 +0100 |
parents | be8f446f94e5 |
children | 60690af283e5 |
rev | line source |
---|---|
1486
be8f446f94e5
testing: add tox config to easily run tests against many hg versions
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
1 [tox] |
be8f446f94e5
testing: add tox config to easily run tests against many hg versions
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
2 envlist = hg28,hg30,hg31,hg32,hg33,hg34,hg35,hg36,hg37,hg38 |
be8f446f94e5
testing: add tox config to easily run tests against many hg versions
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
3 |
be8f446f94e5
testing: add tox config to easily run tests against many hg versions
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
4 [testenv] |
be8f446f94e5
testing: add tox config to easily run tests against many hg versions
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
5 deps= |
be8f446f94e5
testing: add tox config to easily run tests against many hg versions
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
6 nose |
be8f446f94e5
testing: add tox config to easily run tests against many hg versions
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
7 hg28: Mercurial==2.8.2 |
be8f446f94e5
testing: add tox config to easily run tests against many hg versions
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
8 hg30: Mercurial==3.0.1 |
be8f446f94e5
testing: add tox config to easily run tests against many hg versions
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
9 hg31: Mercurial==3.1.2 |
be8f446f94e5
testing: add tox config to easily run tests against many hg versions
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
10 hg32: Mercurial==3.2.4 |
be8f446f94e5
testing: add tox config to easily run tests against many hg versions
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
11 hg33: Mercurial==3.3.3 |
be8f446f94e5
testing: add tox config to easily run tests against many hg versions
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
12 hg34: Mercurial==3.4.2 |
be8f446f94e5
testing: add tox config to easily run tests against many hg versions
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
13 hg35: Mercurial==3.5.2 |
be8f446f94e5
testing: add tox config to easily run tests against many hg versions
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
14 hg36: Mercurial==3.6.3 |
be8f446f94e5
testing: add tox config to easily run tests against many hg versions
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
15 hg37: Mercurial==3.7.3 |
be8f446f94e5
testing: add tox config to easily run tests against many hg versions
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
16 hg38: Mercurial==3.8.3 |
be8f446f94e5
testing: add tox config to easily run tests against many hg versions
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
17 subvertpy |
be8f446f94e5
testing: add tox config to easily run tests against many hg versions
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
18 commands=nosetests {posargs} |