Correction execution des tests

This commit is contained in:
wpetit 2017-02-16 10:03:38 +01:00
父節點 e58ab60bd8
當前提交 0bf686d5f3
共有 2 個文件被更改,包括 3 次插入2 次删除

查看文件

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

查看文件

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