
1. add releatenotes 2. add releatenotes into tox Change-Id: I681672d7defebe0e5104cbdffc81d1875d57f606
31 lines
719 B
INI
31 lines
719 B
INI
[tox]
|
|
minversion = 3.18.0
|
|
# python runtimes: https://governance.openstack.org/tc/reference/runtimes/ussuri.html
|
|
envlist = package
|
|
skipsdist=true
|
|
# this allows tox to infer the base python from the environment name
|
|
# and override any basepython configured in this file
|
|
ignore_basepython_conflict=true
|
|
isolated_build=true
|
|
|
|
[testenv]
|
|
# Set default python version
|
|
basepython = python3
|
|
whitelist_externals =
|
|
make
|
|
poetry
|
|
rm
|
|
deps = poetry != 1.1.8
|
|
|
|
[testenv:package]
|
|
commands =
|
|
make package
|
|
|
|
[testenv:releasenotes]
|
|
description =
|
|
Generate release notes.
|
|
commands =
|
|
poetry install -vvv
|
|
rm -rf releasenotes/build
|
|
poetry run sphinx-build -W --keep-going -b html -j auto releasenotes/source releasenotes/build/html
|