]> git.ipfire.org Git - pakfire.git/commitdiff
tests: Remove dummy Python test
authorMichael Tremer <michael.tremer@ipfire.org>
Thu, 25 Jan 2024 15:36:16 +0000 (15:36 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Thu, 25 Jan 2024 15:36:16 +0000 (15:36 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
Makefile.am
tests/python/test.py [deleted file]

index 20e7beb056bbd8146c955e7bc411c0722e5cc80f..92000e27c728f2457e11dcaa26a96562de6aaa01 100644 (file)
@@ -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 (executable)
index f1a5a05..0000000
+++ /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()