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 ) |