aboutsummaryrefslogtreecommitdiff
path: root/test/requests/run-integration-tests.py
diff options
context:
space:
mode:
authorMuriithi Frederick Muriuki2018-02-23 17:26:42 +0300
committerMuriithi Frederick Muriuki2018-02-23 17:26:42 +0300
commit4d7c565aac196ba1913b65ed27481c6974f1a0b5 (patch)
tree47f77f184188e459336806547b56af82a5e57467 /test/requests/run-integration-tests.py
parenta88f9c25e1b6eaaeede23d9217b1998f28fa7bbf (diff)
downloadgenenetwork2-4d7c565aac196ba1913b65ed27481c6974f1a0b5.tar.gz
Add new test for github logins
Diffstat (limited to 'test/requests/run-integration-tests.py')
-rw-r--r--test/requests/run-integration-tests.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/requests/run-integration-tests.py b/test/requests/run-integration-tests.py
index 0fd7bb20..fc795779 100644
--- a/test/requests/run-integration-tests.py
+++ b/test/requests/run-integration-tests.py
@@ -1,11 +1,13 @@
import sys
from test_login_local import TestLoginLocal
+from test_login_github import TestLoginGithub
from test_registration import TestRegistration
from unittest import TestSuite, TextTestRunner, TestLoader
test_cases = [
- TestLoginLocal,
TestRegistration
+ , TestLoginLocal
+ , TestLoginGithub
]
def suite(gn2_url, es_url):