From 7aee8ff7ad1d23269df890593f2d3020cfcaec14 Mon Sep 17 00:00:00 2001 From: Rich Wareham <rjw57@cam.ac.uk> Date: Wed, 23 Oct 2024 10:27:42 +0100 Subject: [PATCH] fix(tox.ini): set build dir to match where CI jobs expect it to be Although we write code coverage information to build/coverage.xml, our CI jobs expect to find it at buils/py3/coverage.xml. Update tox.ini to match. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index a1eb5be..52c2144 100644 --- a/tox.ini +++ b/tox.ini @@ -25,7 +25,7 @@ skipsdist=True # Where to write build artefacts. We default to the "build" directory in the # tox.ini file's directory. Override with the TOXINI_ARTEFACT_DIR environment # variable. -build_root={env:TOXINI_ARTEFACT_DIR:{toxinidir}/build} +build_root={env:TOXINI_ARTEFACT_DIR:{toxinidir}/build}/{envname} [testenv] # Which environment variables should be passed into the environment. -- GitLab