FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit 5c6dd369 authored by L. Bower's avatar L. Bower
Browse files

reverting tests to not run via a test suite until I figure out what is wrong

parent db357838
No related branches found
No related tags found
No related merge requests found
......@@ -79,7 +79,11 @@ half_fat_tests:
script:
- cd $CI_PROJECT_DIR/tests/integration/partial/
- python3 -m coverage run run_test_suite.py $CI_PROJECT_DIR/test_reports
# - python3 -m coverage run run_test_suite.py $CI_PROJECT_DIR/test_reports
- python3 -m coverage run -m unittest test_advisory.py
- python3 -m coverage run -m unittest test_deposition.py
- python3 -m coverage run -m unittest test_env_suit.py
- python3 -m coverage run -m unittest test_survey.py
- python3 -m coverage report
- python3 -m coverage html -d $CI_PROJECT_DIR/coverage
# - ls
......
......@@ -11,7 +11,8 @@ from integration.partial.test_advisory import TestAdvisory
def run_tests_and_report(output: str):
tests: TestSuite = TestLoader().loadTestsFromTestCase(TestDeposition)
tests: TestSuite = TestSuite()
tests.addTests(TestLoader().loadTestsFromTestCase(TestDeposition))
tests.addTests(TestLoader().loadTestsFromTestCase(TestEnvSuit))
tests.addTests(TestLoader().loadTestsFromTestCase(TestSurvey))
tests.addTests(TestLoader().loadTestsFromTestCase(TestAdvisory))
......
......@@ -12,8 +12,8 @@ class TestEnvSuit(BaseEnvSuitTestSuite.EnvSuitTestSuite):
IntegrationTestUtils.TEST_START_DATE = "20221001"
IntegrationTestUtils.TEST_JOB_DIR = "ENVIRONMENT_2.0_" + IntegrationTestUtils.TEST_START_DATE
self.EA_CSV_COUNT = 18
self.ETH_CSV_COUNT = 18
self.EA_CSV_COUNT = 30
self.ETH_CSV_COUNT = 30
self.EA_PNG_COUNT = 6
self.ETH_PNG_COUNT = 6
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment