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
ae3799d4
Commit
ae3799d4
authored
Aug 08, 2025
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused parameters
parent
c8c6aa50
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
19 deletions
+0
-19
ci-scripts/args_parse.py
ci-scripts/args_parse.py
+0
-19
No files found.
ci-scripts/args_parse.py
View file @
ae3799d4
...
@@ -59,17 +59,6 @@ def ArgsParse(argvs,CiTestObj,RAN,HTML,CONTAINERS,HELP,SCA,CLUSTER):
...
@@ -59,17 +59,6 @@ def ArgsParse(argvs,CiTestObj,RAN,HTML,CONTAINERS,HELP,SCA,CLUSTER):
force_local
=
True
force_local
=
True
#--apply=<filename> as parameters file, to replace inline parameters
elif
re
.
match
(
r'^\-\-Apply=(.+)$'
,
myArgv
,
re
.
IGNORECASE
):
matchReg
=
re
.
match
(
r'^\-\-Apply=(.+)$'
,
myArgv
,
re
.
IGNORECASE
)
py_params_file
=
matchReg
.
group
(
1
)
with
open
(
py_params_file
,
'r'
)
as
file
:
# The FullLoader parameter handles the conversion from YAML
# scalar values to Python dictionary format
py_params
=
yaml
.
load
(
file
,
Loader
=
yaml
.
FullLoader
)
py_param_file_present
=
True
#to be removed once validated
#AssignParams(py_params) #to be uncommented once validated
#consider inline parameters
#consider inline parameters
elif
re
.
match
(
r'^\-\-mode=(.+)$'
,
myArgv
,
re
.
IGNORECASE
):
elif
re
.
match
(
r'^\-\-mode=(.+)$'
,
myArgv
,
re
.
IGNORECASE
):
matchReg
=
re
.
match
(
r'^\-\-mode=(.+)$'
,
myArgv
,
re
.
IGNORECASE
)
matchReg
=
re
.
match
(
r'^\-\-mode=(.+)$'
,
myArgv
,
re
.
IGNORECASE
)
...
@@ -196,14 +185,6 @@ def ArgsParse(argvs,CiTestObj,RAN,HTML,CONTAINERS,HELP,SCA,CLUSTER):
...
@@ -196,14 +185,6 @@ def ArgsParse(argvs,CiTestObj,RAN,HTML,CONTAINERS,HELP,SCA,CLUSTER):
CiTestObj
.
testXMLfiles
.
append
(
matchReg
.
group
(
1
))
CiTestObj
.
testXMLfiles
.
append
(
matchReg
.
group
(
1
))
HTML
.
testXMLfiles
.
append
(
matchReg
.
group
(
1
))
HTML
.
testXMLfiles
.
append
(
matchReg
.
group
(
1
))
HTML
.
nbTestXMLfiles
=
HTML
.
nbTestXMLfiles
+
1
HTML
.
nbTestXMLfiles
=
HTML
.
nbTestXMLfiles
+
1
elif
re
.
match
(
r'^\-\-UEIPAddress=(.+)$'
,
myArgv
,
re
.
IGNORECASE
):
# cleanup
print
(
"parameter --UEIPAddress ignored"
)
elif
re
.
match
(
r'^\-\-UEUserName=(.+)$'
,
myArgv
,
re
.
IGNORECASE
):
print
(
"parameter --UEUserName ignored"
)
elif
re
.
match
(
r'^\-\-UEPassword=(.+)$'
,
myArgv
,
re
.
IGNORECASE
):
print
(
"parameter --UEPassword ignored"
)
elif
re
.
match
(
r'^\-\-UESourceCodePath=(.+)$'
,
myArgv
,
re
.
IGNORECASE
):
print
(
"parameter --UESourceCodePath ignored"
)
elif
re
.
match
(
r'^\-\-finalStatus=(.+)$'
,
myArgv
,
re
.
IGNORECASE
):
elif
re
.
match
(
r'^\-\-finalStatus=(.+)$'
,
myArgv
,
re
.
IGNORECASE
):
matchReg
=
re
.
match
(
r'^\-\-finalStatus=(.+)$'
,
myArgv
,
re
.
IGNORECASE
)
matchReg
=
re
.
match
(
r'^\-\-finalStatus=(.+)$'
,
myArgv
,
re
.
IGNORECASE
)
finalStatus
=
matchReg
.
group
(
1
)
finalStatus
=
matchReg
.
group
(
1
)
...
...
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