diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 50b5f2bbc11fdd930b59a3daa35a7bedd247fec0..aaa4bef72bde1fe3748d2c92ac5791e3a70ea6cc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -54,7 +54,7 @@ before_script: test: script: - cd $CI_PROJECT_DIR/tests/unit/coordinator/ - - python3 -m coverage run -m unittest example_test.py + - python3 -m coverage run -m unittest * - python -m coverage report - python -m coverage html -d $CI_PROJECT_DIR/coverage # - cd $CI_PROJECT_DIR/tests/integration diff --git a/tests/unit/coordinator/example_test2.py b/tests/unit/coordinator/example_test2.py new file mode 100644 index 0000000000000000000000000000000000000000..b5bc92effc2c693df930b4f996cc5371a54b0cc7 --- /dev/null +++ b/tests/unit/coordinator/example_test2.py @@ -0,0 +1,16 @@ +import unittest + + +class ExampleTest(unittest.TestCase): + + def setUp(self) -> None: + super().setUp() + + + def test_v1_dewperiod_expected_results1(self): + self.assertTrue(True) + + +if __name__ == '__main__': + print("hello") + unittest.main()