mirror of
https://github.com/certbot/certbot.git
synced 2026-06-04 06:15:36 -04:00
Merge branch 'allow-py37-testing' into upgrade-c-stuff
This commit is contained in:
commit
89878eefdc
1 changed files with 18 additions and 4 deletions
22
tox.ini
22
tox.ini
|
|
@ -14,8 +14,7 @@ pip_install = {toxinidir}/tools/pip_install_editable.sh
|
|||
# before the script moves on to the next package. All dependencies are pinned
|
||||
# to a specific version for increased stability for developers.
|
||||
install_and_test = {toxinidir}/tools/install_and_test.sh
|
||||
dns_packages =
|
||||
certbot-dns-cloudflare \
|
||||
python37_compatible_dns_packages =
|
||||
certbot-dns-cloudxns \
|
||||
certbot-dns-digitalocean \
|
||||
certbot-dns-dnsimple \
|
||||
|
|
@ -25,14 +24,22 @@ dns_packages =
|
|||
certbot-dns-nsone \
|
||||
certbot-dns-rfc2136 \
|
||||
certbot-dns-route53
|
||||
all_packages =
|
||||
dns_packages =
|
||||
certbot-dns-cloudflare \
|
||||
{[base]python37_compatible_dns_packages}
|
||||
nondns_packages =
|
||||
acme[dev] \
|
||||
.[dev] \
|
||||
certbot-apache \
|
||||
{[base]dns_packages} \
|
||||
certbot-nginx \
|
||||
certbot-postfix \
|
||||
letshelp-certbot
|
||||
python37_compatible_packages =
|
||||
{[base]nondns_packages} \
|
||||
{[base]python37_compatible_dns_packages}
|
||||
all_packages =
|
||||
{[base]nondns_packages} \
|
||||
{[base]dns_packages}
|
||||
install_packages =
|
||||
{toxinidir}/tools/pip_install_editable.sh {[base]all_packages}
|
||||
source_paths =
|
||||
|
|
@ -62,6 +69,13 @@ commands =
|
|||
setenv =
|
||||
PYTHONHASHSEED = 0
|
||||
|
||||
[testenv:py37]
|
||||
commands =
|
||||
{[base]install_and_test} {[base]python37_compatible_packages}
|
||||
python tests/lock_test.py
|
||||
setenv =
|
||||
{[testenv]setenv}
|
||||
|
||||
[testenv:py27-oldest]
|
||||
commands =
|
||||
{[testenv]commands}
|
||||
|
|
|
|||
Loading…
Reference in a new issue