Skip to content

Commit

Permalink
test: Add VM's XML and VM's log into link-patterns
Browse files Browse the repository at this point in the history
Capturing VM's xml and logs was implemented in [1], now it's time to
also include the in our link-patterns.

[1] cockpit-project/cockpit-machines#1158
  • Loading branch information
skobyda committed Sep 6, 2023
1 parent e559b73 commit 444ae24
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions test/common/link-patterns.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,15 @@
"label": "coverage",
"pattern": "Code coverage report in ([A-Za-z0-9\\-\\.]+)$",
"url": "$1/"
},
{
"label": "vm xml",
"pattern": "Wrote ([A-Za-z0-9\.\-]+) XML to ([A-Za-z0-9\\.\\-]+\\.xml)$",
"url": "$2"
},
{
"label": "vm log",
"pattern": "Wrote ([A-Za-z0-9\.\-]+) log to ([A-Za-z0-9\\.\\-]+\\.log)$",
"url": "$2"
}
]

0 comments on commit 444ae24

Please sign in to comment.