Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenXG
OpenXG-RAN
Commits
5730df9f
Commit
5730df9f
authored
Nov 15, 2024
by
Raphael Defosseux
Committed by
Robert Schmidt
Nov 22, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CI: Avoid python warning about wrong escape sequence
parent
d00a614d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
ci-scripts/main.py
ci-scripts/main.py
+2
-2
No files found.
ci-scripts/main.py
View file @
5730df9f
...
...
@@ -634,7 +634,7 @@ elif re.match('^TesteNB$', mode, re.IGNORECASE) or re.match('^TestUE$', mode, re
#(6 digits or less than 6 digits followed by +)
for
test
in
exclusion_tests
:
if
(
not
re
.
match
(
'^[0-9]{6}$'
,
test
)
and
not
re
.
match
(
'^[0-9]{1,5}\+$'
,
test
)):
not
re
.
match
(
'^[0-9]{1,5}
\
\
+$'
,
test
)):
logging
.
error
(
'exclusion test is invalidly formatted: '
+
test
)
sys
.
exit
(
1
)
else
:
...
...
@@ -645,7 +645,7 @@ elif re.match('^TesteNB$', mode, re.IGNORECASE) or re.match('^TestUE$', mode, re
#be verbose
for
test
in
requested_tests
:
if
(
re
.
match
(
'^[0-9]{6}$'
,
test
)
or
re
.
match
(
'^[0-9]{1,5}\+$'
,
test
)):
re
.
match
(
'^[0-9]{1,5}
\
\
+$'
,
test
)):
logging
.
info
(
'test group/case requested: '
+
test
)
else
:
logging
.
error
(
'requested test is invalidly formatted: '
+
test
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment