Correction execution des tests

This commit is contained in:
wpetit 2017-02-16 10:03:38 +01:00
parent e58ab60bd8
commit 0bf686d5f3
2 changed files with 3 additions and 2 deletions

View File

@ -1,2 +1,3 @@
.PHONY: test
test: test:
python3 -m unittest discover test "*_test.py" python3 -m unittest discover "./test" "*_test.py"

View File

@ -9,7 +9,7 @@ class TestPackage(unittest.TestCase):
parser = package.create_args_parser() parser = package.create_args_parser()
def test_download_and_extract_rkt(self): def test_download_and_extract_rkt(self):
"""TODO"""
if __name__ == '__main__': if __name__ == '__main__':