From e082559046a83f2d58e24044ed7429d43d86b83a Mon Sep 17 00:00:00 2001 From: "John L. Villalovos" Date: Mon, 16 Oct 2017 13:47:37 -0700 Subject: [PATCH] Fix for broken zuul v3 job and releasenotes The Zuul v3 job is looking for the log files from the release notes in: .tox/releasenotes/log/ but we had then in .tox/venv/log/ Fix it to where the Zuul v3 job expects it to be. Also updated the 'docs' job, even though job isn't failing. If the job did fail, with current setup, no log files would be copied which would make debugging more difficult. This change will make it so the log files are copied. Change-Id: I5c036db1a9e94ca28e26fd7b45475d52223f5f0e --- tox.ini | 2 -- 1 file changed, 2 deletions(-) diff --git a/tox.ini b/tox.ini index 65678b7e8..b00ebead8 100644 --- a/tox.ini +++ b/tox.ini @@ -59,12 +59,10 @@ usedevelop = True [testenv:docs] setenv = PYTHONHASHSEED=0 sitepackages = False -envdir = {toxworkdir}/venv commands = python setup.py build_sphinx [testenv:releasenotes] -envdir = {toxworkdir}/venv commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html [flake8]