Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
GÉANT Service Orchestrator
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GÉANT Orchestration and Automation Team
GAP
GÉANT Service Orchestrator
Merge requests
!71
add 2 test cases for create_iptrunk workflow and one for create_site
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
add 2 test cases for create_iptrunk workflow and one for create_site
feature/NAT-262-add-tests-for-workflows
into
develop
Overview
0
Commits
2
Pipelines
4
Changes
11
Closed
Mohammad Torkashvand
requested to merge
feature/NAT-262-add-tests-for-workflows
into
develop
1 year ago
Overview
0
Commits
2
Pipelines
4
Changes
11
Expand
0
0
Merge request reports
Compare
develop
version 3
10c0c05e
1 year ago
version 2
420a4c07
1 year ago
version 1
1fccf4e3
1 year ago
develop (base)
and
latest version
latest version
ece49e4a
2 commits,
1 year ago
version 3
10c0c05e
2 commits,
1 year ago
version 2
420a4c07
2 commits,
1 year ago
version 1
1fccf4e3
1 commit,
1 year ago
11 files
+
569
−
127
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
11
Search (e.g. *.vue) (Ctrl+P)
gso/services/provisioning_proxy.py
+
1
−
2
Options
@@ -4,7 +4,6 @@
"""
import
json
import
logging
from
typing
import
NoReturn
import
requests
from
orchestrator
import
conditional
,
inputstep
,
step
@@ -252,7 +251,7 @@ def _await_pp_results(subscription: SubscriptionModel, label_text: str = DEFAULT
confirm
:
Accept
=
Accept
(
"
INCOMPLETE
"
)
@validator
(
"
pp_run_results
"
,
allow_reuse
=
True
,
pre
=
True
,
always
=
True
)
def
run_results_must_be_given
(
cls
,
run_results
:
dict
)
->
dict
|
NoReturn
:
def
run_results_must_be_given
(
cls
,
run_results
:
dict
)
->
dict
:
if
run_results
is
None
:
raise
ValueError
(
"
Run results may not be empty. Wait for the provisioning proxy to finish.
"
)
return
run_results
Loading