src/eric7/Testing/Interfaces/__init__.py

Sat, 16 Dec 2023 16:30:55 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 16 Dec 2023 16:30:55 +0100
branch
eric7
changeset 10415
af9a6dac2611
parent 9653
e67609152c5e
child 9654
7328efba128b
child 10439
21c28b0f9e41
permissions
-rw-r--r--

Testing
- Extended the testing dialog to allow to perform the test with debugger support (only if the dialog was started from within eric IDE).

# -*- coding: utf-8 -*-

# Copyright (c) 2022 - 2023 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 = {
    "MicroPython": (
        UnittestExecutor.name,
        PytestExecutor.name,
    ),
    "Python3": (
        UnittestExecutor.name,
        PytestExecutor.name,
    ),
}

eric ide

mercurial