diff --git a/Makefile b/Makefile index 6f08439..3a4edb2 100644 --- a/Makefile +++ b/Makefile @@ -1,2 +1,3 @@ +.PHONY: test test: - python3 -m unittest discover test "*_test.py" + python3 -m unittest discover "./test" "*_test.py" diff --git a/test/package_test.py b/test/package_test.py index 034c925..d600484 100644 --- a/test/package_test.py +++ b/test/package_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__':