aboutsummaryrefslogtreecommitdiffstats
path: root/tests/signalTests/test_git_signal.py
diff options
context:
space:
mode:
authorEdan Binshtok <eb578m@intl.att.com>2017-10-18 07:56:58 +0300
committerEdan Binshtok <eb578m@intl.att.com>2017-10-18 07:56:58 +0300
commit433a8256e31f755f5e236491bbe39d3db24d6d6d (patch)
tree45f483eab1ea1654ee21a3b51c5b8bf1a8ebaffa /tests/signalTests/test_git_signal.py
parentf8907f0c4fc0ba4bb97a1d636a50c5b40c2642f2 (diff)
Align CI test test and JJB
Add vendor agnostic CI test to align Add Tox and maven docker Issue Id: VVP-15 Change-Id: I69f0c1036e6f72b62bddc822544c55200af7b37d Signed-off-by: Edan Binshtok <eb578m@intl.att.com>
Diffstat (limited to 'tests/signalTests/test_git_signal.py')
-rw-r--r--tests/signalTests/test_git_signal.py21
1 files changed, 2 insertions, 19 deletions
diff --git a/tests/signalTests/test_git_signal.py b/tests/signalTests/test_git_signal.py
index d008787..63290d2 100644
--- a/tests/signalTests/test_git_signal.py
+++ b/tests/signalTests/test_git_signal.py
@@ -1,5 +1,5 @@
-
-# ============LICENSE_START==========================================
+
+# ============LICENSE_START==========================================
# org.onap.vvp/test-engine
# ===================================================================
# Copyright © 2017 AT&T Intellectual Property. All rights reserved.
@@ -301,20 +301,3 @@ class TestGitSignal(TestSignalBase):
"Invited user: " + email + " and" + second_invited_email['full_name'] + " found in GitLab.")
logger.debug(
"Inviter and invited users were created successfully on GitLab!")
-
- @exception()
- def test_push_yaml_files_to_repo_check_decline_of_cl(self):
-
- if settings.DATABASE_TYPE == 'local':
- logger.debug("Local environment, skipping test...")
- else:
- user_content = API.VirtualFunction.create_engagement()
- token = "token " + API.User.login_user(user_content['el_email'])
- user_content['session_token'] = token
- cl_content_before_push_and_decline = API.Checklist.retrieve_heat_checklist(
- user_content)
- API.GitLab.git_clone_push(user_content, yaml=True)
- cl_content_after_push_and_decline = API.Checklist.retrieve_heat_checklist(
- user_content)
- Helper.internal_not_equal(
- cl_content_before_push_and_decline, cl_content_after_push_and_decline)