diff options
author | Muriithi Frederick Muriuki | 2018-02-23 17:26:42 +0300 |
---|---|---|
committer | Pjotr Prins | 2018-03-26 09:29:29 +0000 |
commit | 7ea87a27735242889ac369dcbd5aec83a1e1caff (patch) | |
tree | a7b954715672c9006b4b456acf9870f6f058d5bf /test/requests/run-integration-tests.py | |
parent | e982d7223141d247954ab5b5c1ff9bbed907c603 (diff) | |
download | genenetwork2-7ea87a27735242889ac369dcbd5aec83a1e1caff.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.py | 4 |
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): |