src/eric7/Testing/Interfaces/__init__.py

Mon, 24 Feb 2025 15:43:49 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Mon, 24 Feb 2025 15:43:49 +0100
branch
eric7
changeset 11148
15e30f0c76a8
parent 11090
f5f5f5803935
child 11118
967a88a16a21
permissions
-rw-r--r--

Adjusted the code to the modified issue codes.

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

# Copyright (c) 2022 - 2025 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