--- a/eric7/Unittest/Interfaces/__init__.py Mon May 16 17:22:43 2022 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,21 +0,0 @@ -# -*- 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, -)