diff options
author | Muriithi Frederick Muriuki | 2018-04-13 15:33:39 +0300 |
---|---|---|
committer | Muriithi Frederick Muriuki | 2018-04-13 15:33:39 +0300 |
commit | 55cc4c63478de9587e282522540334e5375aebf1 (patch) | |
tree | 77c058685a6fbe8ea100a52746f3071c19fc51ad /test/requests/run-integration-tests.py | |
parent | e203523415610fe22f236d082d8bde90e6f4cae8 (diff) | |
download | genenetwork2-55cc4c63478de9587e282522540334e5375aebf1.tar.gz |
Use single entry-point for tests
* Remove the run-integration-tests.py, and use the test-website.py as
the entry point for all tests. This simplifies running the tests for
the site.
Diffstat (limited to 'test/requests/run-integration-tests.py')
-rw-r--r-- | test/requests/run-integration-tests.py | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/test/requests/run-integration-tests.py b/test/requests/run-integration-tests.py deleted file mode 100644 index 5e816549..00000000 --- a/test/requests/run-integration-tests.py +++ /dev/null @@ -1,34 +0,0 @@ -import sys -from test_login_local import TestLoginLocal -from test_login_orcid import TestLoginOrcid -from test_login_github import TestLoginGithub -from test_registration import TestRegistration -from unittest import TestSuite, TextTestRunner, TestLoader - -test_cases = [ - TestRegistration - , TestLoginLocal - , TestLoginGithub - , TestLoginOrcid -] - -def suite(gn2_url, es_url): - the_suite = TestSuite() - for case in test_cases: - the_suite.addTests(initTest(case, gn2_url, es_url)) - return the_suite - -def initTest(klass, gn2_url, es_url): - loader = TestLoader() - methodNames = loader.getTestCaseNames(klass) - return [klass(mname, gn2_url, es_url) for mname in methodNames] - -def main(gn2_url, es_url): - runner = TextTestRunner() - runner.run(suite(gn2_url, es_url)) - -if __name__ == "__main__": - if len(sys.argv) < 3: - raise Exception("Required arguments missing:\n\tTry running `run-integration-test.py <gn2-url> <es-url>`") - else: - main(sys.argv[1], sys.argv[2]) |