eric7/Testing/Interfaces/__init__.py

branch
unittest
changeset 9066
a219ade50f7c
parent 9065
39405e6eba20
child 9074
1afb90182258
equal deleted inserted replaced
9065:39405e6eba20 9066:a219ade50f7c
1 # -*- coding: utf-8 -*-
2
3 # Copyright (c) 2022 Detlev Offenbach <detlev@die-offenbachs.de>
4 #
5
6 """
7 Package containg the various test framework interfaces.
8 """
9
10 from .PytestExecutor import PytestExecutor
11 from .UnittestExecutor import UnittestExecutor
12
13 Frameworks = (
14 UnittestExecutor,
15 PytestExecutor,
16 )
17
18 FrameworkNames = (
19 UnittestExecutor.name,
20 PytestExecutor.name,
21 )

eric ide

mercurial