eric7/Testing/Interfaces/__init__.py

branch
unittest
changeset 9066
a219ade50f7c
parent 9065
39405e6eba20
child 9074
1afb90182258
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eric7/Testing/Interfaces/__init__.py	Mon May 16 19:46:51 2022 +0200
@@ -0,0 +1,21 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2022 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Package containg the various test framework interfaces.
+"""
+
+from .PytestExecutor import PytestExecutor
+from .UnittestExecutor import UnittestExecutor
+
+Frameworks = (
+    UnittestExecutor,
+    PytestExecutor,
+)
+
+FrameworkNames = (
+    UnittestExecutor.name,
+    PytestExecutor.name,
+)

eric ide

mercurial