Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Q
qa-report-app
Manage
Activity
Members
Labels
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
infrastructure
qa-report-app
Merge requests
!84
Tag new bugs with bug:workboard
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Tag new bugs with bug:workboard
wip/andrewsh/tag-bugs
into
master
Overview
0
Commits
4
Pipelines
3
Changes
3
Merged
Andrej Shadura
requested to merge
wip/andrewsh/tag-bugs
into
master
4 years ago
Overview
0
Commits
4
Pipelines
3
Changes
3
Expand
See
https://phabricator.apertis.org/T7126
for more details.
👍
0
👎
0
Merge request reports
Compare
master
version 2
1b9741eb
4 years ago
version 1
9c9e472e
4 years ago
master (base)
and
latest version
latest version
cb45389e
4 commits,
4 years ago
version 2
1b9741eb
3 commits,
4 years ago
version 1
9c9e472e
2 commits,
4 years ago
3 files
+
9
−
7
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
pages.py
+
2
−
2
Options
@@ -58,8 +58,8 @@ REPORT_PLATFORMS = [
def
_format_notes
(
notes
):
apertis_match
=
re
.
compile
(
r
'
\bAPERTIS-T(?P<task>\d+)\b
'
)
http_match
=
re
.
compile
(
r
'
\bhttp(s)?://(\S+)\b
'
)
apertis_link
=
'
<a href=
"
{}/T\g<task>
"
>\g<0></a>
'
http_link
=
'
<a href=
"
\g<0>
"
>\g<0></a>
'
apertis_link
=
r
'
<a href=
"
{}/T\g<task>
"
>\g<0></a>
'
http_link
=
r
'
<a href=
"
\g<0>
"
>\g<0></a>
'
apertis_task_link
=
apertis_link
.
format
(
config
[
'
apertis-phab
'
])
Loading