summaryrefslogtreecommitdiff
path: root/changelogs
diff options
context:
space:
mode:
authorMatt Clay <mclay@redhat.com>2022-02-02 18:05:26 -0800
committerGitHub <noreply@github.com>2022-02-02 18:05:26 -0800
commit62d60ad1bf13bf897719d8221f0f6ba046b6db6d (patch)
tree1f612e4c2ee7fe541b64d175f32dfe6965070c76 /changelogs
parent82b1731280bd6f4b7d092b44c9ad39b01c78ae45 (diff)
downloadansible-62d60ad1bf13bf897719d8221f0f6ba046b6db6d.tar.gz
[stable-2.9] ansible-test - Use relative paths in junit output. (#76911)
* [stable-2.9] 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.