From 2a89ab8f08c0a3b4c50363e7689b571acccc8242 Mon Sep 17 00:00:00 2001 From: Christian Boettcher <c.boettcher@fz-juelich.de> Date: Thu, 2 Dec 2021 08:58:29 +0100 Subject: [PATCH] add dummy test for pipeline --- .gitignore | 3 ++- tests/dummy_tests/test_dummy.py | 7 +++++++ 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 tests/dummy_tests/test_dummy.py diff --git a/.gitignore b/.gitignore index 5336166..d61689c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ dist/ -.coverage \ No newline at end of file +.coverage +__pycache__/ \ No newline at end of file diff --git a/tests/dummy_tests/test_dummy.py b/tests/dummy_tests/test_dummy.py new file mode 100644 index 0000000..e1e838b --- /dev/null +++ b/tests/dummy_tests/test_dummy.py @@ -0,0 +1,7 @@ +from unittest import TestCase + +class DummyTest(TestCase): + + def test_dummy(self): + print("Test Print") + self.assertEqual(4, 2*2) \ No newline at end of file -- GitLab