diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8e01b3fa59eea5086497c7c84f867474e65669a5..6f320ae88361d233649d062c25eaee3ea678334a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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 diff --git a/tests/integration/partial/run_test_suite.py b/tests/integration/partial/run_test_suite.py index e48348ab20f3564b0a0193d63cbcc52ee8191d2a..2ec30a691f0dc6bc6f7bcc48c52e3699f618e877 100644 --- a/tests/integration/partial/run_test_suite.py +++ b/tests/integration/partial/run_test_suite.py @@ -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)) diff --git a/tests/integration/partial/test_env_suit.py b/tests/integration/partial/test_env_suit.py index 3459f2427d89ef061a8870f42e6c83e78c8b1c3d..4548b2c91e9a1e1279cfabb6933057280528d5cb 100644 --- a/tests/integration/partial/test_env_suit.py +++ b/tests/integration/partial/test_env_suit.py @@ -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