From: Michael Tremer Date: Thu, 25 Jan 2024 15:36:16 +0000 (+0000) Subject: tests: Remove dummy Python test X-Git-Tag: 0.9.30~1253 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a94aaa51e71cd10446ed3e09dcc17a72864c4439;p=pakfire.git tests: Remove dummy Python test Signed-off-by: Michael Tremer --- diff --git a/Makefile.am b/Makefile.am index 20e7beb05..92000e27c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1137,8 +1137,7 @@ TESTS_ENVIRONMENT = \ dist_check_SCRIPTS = \ tests/python/keys.py \ tests/python/jail.py \ - tests/python/package.py \ - tests/python/test.py + tests/python/package.py TESTS = \ $(check_PROGRAMS) \ diff --git a/tests/python/test.py b/tests/python/test.py deleted file mode 100755 index f1a5a051a..000000000 --- a/tests/python/test.py +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/python3 - -import unittest - -class Test(unittest.TestCase): - """ - This is an example test for Pakfire - """ - def test_example(self): - self.assertEqual("ABC", "ABC") - -if __name__ == "__main__": - unittest.main()