5a0c525ee5
- Removed pins to old version of setuptools. - Added py312 section to tox.ini [testenv] - Updated flake8 to 7.1.1 instead of 3.9.2 - Fixed pep8 failure in unit test - Enable upstream testing for py312 Change-Id: Id0b75bd5a7e6954f19dbea25e08187ae62d3c6d9
118 lines
3.1 KiB
INI
118 lines
3.1 KiB
INI
# Source charm: ./tox.ini
|
|
# This file is managed centrally by release-tools and should not be modified
|
|
# within individual charm repos. See the 'global' dir contents for available
|
|
# choices of tox.ini for OpenStack Charms:
|
|
# https://github.com/openstack-charmers/release-tools
|
|
|
|
[tox]
|
|
envlist = pep8,py3
|
|
# NOTE: Avoid build/test env pollution by not enabling sitepackages.
|
|
sitepackages = False
|
|
# NOTE: Avoid false positives by not skipping missing interpreters.
|
|
skip_missing_interpreters = False
|
|
|
|
[testenv]
|
|
# We use tox mainly for virtual environment management for test requirements
|
|
# and do not install the charm code as a Python package into that environment.
|
|
# Ref: https://tox.wiki/en/latest/config.html#skip_install
|
|
skip_install = True
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
PYTHONHASHSEED=0
|
|
TERM=linux
|
|
CHARM_LAYERS_DIR={toxinidir}/layers
|
|
CHARM_INTERFACES_DIR={toxinidir}/interfaces
|
|
JUJU_REPOSITORY={toxinidir}/build
|
|
passenv =
|
|
no_proxy
|
|
http_proxy
|
|
https_proxy
|
|
CHARM_INTERFACES_DIR
|
|
CHARM_LAYERS_DIR
|
|
JUJU_REPOSITORY
|
|
allowlist_externals =
|
|
charmcraft
|
|
bash
|
|
tox
|
|
deps =
|
|
-r{toxinidir}/requirements.txt
|
|
|
|
[testenv:build]
|
|
basepython = python3
|
|
deps =
|
|
# charmcraft clean is done to ensure that
|
|
# `tox -e build` always performs a clean, repeatable build.
|
|
# For faster rebuilds during development,
|
|
# directly run for jammy amd64 `charmcraft -v pack --bases-index 0`
|
|
# for kinetic amd64 `charmcraft -v pack --bases-index 4`
|
|
commands =
|
|
charmcraft clean
|
|
charmcraft -v pack
|
|
charmcraft clean
|
|
|
|
[testenv:build-reactive]
|
|
basepython = python3
|
|
commands =
|
|
charm-build --log-level DEBUG --use-lock-file-branches -o {toxinidir}/build/builds src {posargs}
|
|
|
|
[testenv:add-build-lock-file]
|
|
basepython = python3
|
|
commands =
|
|
charm-build --log-level DEBUG --write-lock-file -o {toxinidir}/build/builds src {posargs}
|
|
|
|
[testenv:py3]
|
|
basepython = python3
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
commands = stestr run --slowest {posargs}
|
|
|
|
[testenv:py310]
|
|
basepython = python3.10
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
commands = stestr run --slowest {posargs}
|
|
|
|
[testenv:py312]
|
|
basepython = python3.12
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
commands = stestr run --slowest {posargs}
|
|
|
|
[testenv:pep8]
|
|
basepython = python3
|
|
deps = flake8==7.1.1
|
|
git+https://github.com/juju/charm-tools.git
|
|
commands = flake8 {posargs} src unit_tests
|
|
|
|
[testenv:cover]
|
|
# Technique based heavily upon
|
|
# https://github.com/openstack/nova/blob/master/tox.ini
|
|
basepython = python3
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
setenv =
|
|
{[testenv]setenv}
|
|
PYTHON=coverage run
|
|
commands =
|
|
coverage erase
|
|
stestr run --slowest {posargs}
|
|
coverage combine
|
|
coverage html -d cover
|
|
coverage xml -o cover/coverage.xml
|
|
coverage report
|
|
|
|
[coverage:run]
|
|
branch = True
|
|
concurrency = multiprocessing
|
|
parallel = True
|
|
source =
|
|
.
|
|
omit =
|
|
.tox/*
|
|
*/charmhelpers/*
|
|
unit_tests/*
|
|
|
|
[testenv:venv]
|
|
basepython = python3
|
|
commands = {posargs}
|
|
|
|
[flake8]
|
|
# E402 ignore necessary for path append before sys module import in actions
|
|
ignore = E402,W503,W504
|