aboutsummaryrefslogtreecommitdiff
path: root/autotests
diff options
context:
space:
mode:
authorFriedrich W. H. Kossebau <kossebau@kde.org>2022-02-16 17:16:37 +0100
committerFriedrich W. H. Kossebau <kossebau@kde.org>2022-02-25 23:52:26 +0000
commit4a1710762b0a53d6a35e6d0cb630b9037a853c63 (patch)
treed6791446e76652f403ea3b13bc334df2ab244387 /autotests
parentf446af2aa592997f6bc4aa3b5559cf477f9259f8 (diff)
downloadkconfig-4a1710762b0a53d6a35e6d0cb630b9037a853c63.tar.gz
kconfig-4a1710762b0a53d6a35e6d0cb630b9037a853c63.tar.bz2
Remove broken Python bindings generation
pyqt broke sip4 compatibility in 5.15.6, and there is no more maintainer of the KF Python bindings to fix things. Future support might need different code, so no advantage in keeping the old code around.
Diffstat (limited to 'autotests')
-rw-r--r--autotests/pythontest.py28
1 files changed, 0 insertions, 28 deletions
diff --git a/autotests/pythontest.py b/autotests/pythontest.py
deleted file mode 100644
index 2a51ed44..00000000
--- a/autotests/pythontest.py
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/usr/bin/env python
-#-*- coding: utf-8 -*-
-
-from __future__ import print_function
-
-import sys
-
-sys.path.append(sys.argv[1])
-
-from PyQt5 import QtCore
-from PyQt5 import QtGui
-from PyQt5 import QtWidgets
-
-from PyKF5 import KConfigCore
-from PyKF5 import KConfigGui
-
-def main():
- app = QtWidgets.QApplication(sys.argv)
-
- kcg = KConfigCore.KConfigGroup();
-
- assert(not kcg.isValid())
-
- sc = KConfigGui.KStandardShortcut.open()
- assert(sc == [QtGui.QKeySequence("CTRL+O")])
-
-if __name__ == '__main__':
- sys.exit(main())