Coverage for src/km3modules/tests/test_foo.py: 100%

14 statements  

« prev     ^ index     » next       coverage.py v7.4.4, created at 2024-04-19 03:14 +0000

1# Filename: test_foo.py 

2# pylint: disable=C0111,E1003,R0904,C0103,R0201,C0102 

3"""Make a dummy test so jenkins won't cry ): 

4""" 

5from km3pipe.testing import TestCase 

6 

7__author__ = "Moritz Lotze" 

8__copyright__ = "Copyright 2016, and the KM3NeT collaboration." 

9__credits__ = [] 

10__license__ = "MIT" 

11__maintainer__ = "Moritz Lotze" 

12__email__ = "tgal@km3net.de" 

13__status__ = "Development" 

14 

15 

16class TestPipeline(TestCase): 

17 """Tests for the main pipeline""" 

18 

19 def setUp(self): 

20 pass 

21 

22 def test_pass(self): 

23 assert True