mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 13:59:02 -04:00
Shared tox envdir
This commit is contained in:
parent
2e9cf9a5d5
commit
db1e078c06
3 changed files with 6 additions and 2 deletions
|
|
@ -6,6 +6,6 @@
|
|||
# test docker on their git working directories.
|
||||
|
||||
.git
|
||||
.tox
|
||||
tox.cover
|
||||
venv
|
||||
docs
|
||||
|
|
|
|||
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -4,7 +4,7 @@
|
|||
build/
|
||||
dist/
|
||||
/venv/
|
||||
/.tox/
|
||||
/tox.venv/
|
||||
letsencrypt.log
|
||||
|
||||
# coverage
|
||||
|
|
|
|||
4
tox.ini
4
tox.ini
|
|
@ -9,6 +9,10 @@ skipsdist = true
|
|||
envlist = py26,py27,cover,lint
|
||||
|
||||
[testenv]
|
||||
# share one venv across testenvs, instead of multiple
|
||||
# .tox/{py26,py27,cover,lint}; but do NOT set envdir to
|
||||
# {toxinidir}/venv as it will destroy existing dev venv
|
||||
envdir = {toxinidir}/tox.venv
|
||||
commands =
|
||||
pip install -r requirements.txt -e acme -e .[testing] -e letsencrypt_apache -e letsencrypt_nginx
|
||||
# -q does not suppress errors
|
||||
|
|
|
|||
Loading…
Reference in a new issue