aboutsummaryrefslogtreecommitdiff
path: root/test/requests/run-integration-tests.py
diff options
context:
space:
mode:
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):