|
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 "MicroPython": ( |
|
20 UnittestExecutor.name, |
|
21 PytestExecutor.name, |
|
22 ), |
|
23 "Python3": ( |
|
24 UnittestExecutor.name, |
|
25 PytestExecutor.name, |
|
26 ), |
|
27 } |