[stable-only]: Fix reno on stein

Change-Id: Id29d7817eebdcb7462132e9422a0139704005726
This commit is contained in:
elajkat 2023-10-03 09:15:48 +02:00
parent 951390c126
commit fbfcf5b7ae
6 changed files with 16 additions and 9 deletions

View File

@ -1,4 +1,3 @@
- project:
templates:
- openstack-cover-jobs-neutron
- tap-as-a-service-tempest-plugin-jobs
- noop-jobs

7
doc/requirements.txt Normal file
View File

@ -0,0 +1,7 @@
# The order of packages is significant, because pip processes them in the order
# of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later.
sphinx!=1.6.6,!=1.6.7,>=1.6.2,<2.0.0;python_version=='2.7' # BSD
sphinx!=1.6.6,!=1.6.7,>=1.6.2;python_version>='3.4' # BSD
openstackdocstheme>=1.18.1 # Apache-2.0
reno>=2.5.0 # Apache-2.0

View File

@ -22,8 +22,6 @@ sys.path.insert(0, os.path.abspath('../..'))
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
extensions = [
'sphinx.ext.autodoc',
#'sphinx.ext.intersphinx',
'oslosphinx'
]
# autodoc generation is a bit aggressive and a nuisance when doing heavy

View File

@ -5,9 +5,12 @@ prelude: >
features:
- |
[`blueprint port-mirroring-sriov-vf <https://blueprints.launchpad.net/neutron/+spec/port-mirroring-sriov-vf>`_]
* Adds a new TaaS Agent driver (i.e. SRIOV) for Intel i40e driver backend.
* Neutron TaaS Agent is refactored to decouple its tight binding with ovs
driver. This prepares the taas agent code-base for addition of a new
TaaS Agent driver (SRIOV).
driver. This prepares the taas agent code-base for addition of a new
TaaS Agent driver (SRIOV).
* Adds a new API extension, i.e. taas-vlan-filter for adding a new
attribute (vlan_filter) in tap-flow data model.
attribute (vlan_filter) in tap-flow data model.

View File

@ -38,7 +38,6 @@
# ones.
extensions = [
'reno.sphinxext',
'oslosphinx',
]
# Add any paths that contain templates here, relative to this directory.

View File

@ -32,7 +32,6 @@ commands =
commands = {posargs}
[testenv:cover]
basepython = python2.7
setenv =
{[testenv]setenv}
PYTHON=coverage run --source neutron_taas --parallel-mode
@ -47,6 +46,8 @@ commands =
commands = python setup.py build_sphinx
[testenv:releasenotes]
deps = -c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/stein}
-r{toxinidir}/doc/requirements.txt
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
[testenv:debug]