summaryrefslogtreecommitdiff
path: root/changelogs
diff options
context:
space:
mode:
authorMatt Clay <mclay@redhat.com>2022-02-02 18:04:58 -0800
committerGitHub <noreply@github.com>2022-02-02 18:04:58 -0800
commitcc97353702dbf864a5084c872ef5d3a8aefdce38 (patch)
treeb15cd852f0f79a176a1815dd589060e289212052 /changelogs
parent4081c8d2395af5ee23dfa0784cf257ae4ad1e080 (diff)
downloadansible-cc97353702dbf864a5084c872ef5d3a8aefdce38.tar.gz
[stable-2.11] ansible-test - Use relative paths in junit output. (#76909)
* [stable-2.11] ansible-test - Use relative paths in junit output. (#76871) * ansible-test - Use relative paths in junit output. * ansible-test - Handle out-of-tree JUnit paths. * Also fix a traceback in the junit callback during automatic fact gathering. (cherry picked from commit fbb5d56bd274c44b193cb95f0230b9352f62aab2) * Fix task path unicode error in junit callback. (cherry picked from commit 41db6d8d35900d425df3228406db3fec61ab2269)
Diffstat (limited to 'changelogs')
-rw-r--r--changelogs/fragments/ansible-test-junit-relative-paths.yml6
-rw-r--r--changelogs/fragments/junit-callback-task-path-unicode.yml2
2 files changed, 8 insertions, 0 deletions
diff --git a/changelogs/fragments/ansible-test-junit-relative-paths.yml b/changelogs/fragments/ansible-test-junit-relative-paths.yml
new file mode 100644
index 0000000000..b1ace19687
--- /dev/null
+++ b/changelogs/fragments/ansible-test-junit-relative-paths.yml
@@ -0,0 +1,6 @@
+bugfixes:
+ - ansible-test - Use relative paths in JUnit files generated during integration test runs.
+ - ansible-test - Replace the directory portion of out-of-tree paths in JUnit files from integration tests with the ``out-of-tree:`` prefix.
+ - junit callback - Fix traceback during automatic fact gathering when using relative paths.
+minor_changes:
+ - junit callback - Add support for replacing the directory portion of out-of-tree relative task paths with a placeholder.
diff --git a/changelogs/fragments/junit-callback-task-path-unicode.yml b/changelogs/fragments/junit-callback-task-path-unicode.yml
new file mode 100644
index 0000000000..2b1ffd41ea
--- /dev/null
+++ b/changelogs/fragments/junit-callback-task-path-unicode.yml
@@ -0,0 +1,2 @@
+bugfixes:
+ - junit callback - Fix unicode error when handling non-ASCII task paths.