12 from dataclasses import dataclass |
12 from dataclasses import dataclass |
13 from enum import IntEnum |
13 from enum import IntEnum |
14 |
14 |
15 from PyQt6.QtCore import pyqtSignal, QObject, QProcess, QProcessEnvironment |
15 from PyQt6.QtCore import pyqtSignal, QObject, QProcess, QProcessEnvironment |
16 |
16 |
17 import Preferences |
17 from eric7 import Preferences |
18 |
18 |
19 |
19 |
20 class TestResultCategory(IntEnum): |
20 class TestResultCategory(IntEnum): |
21 """ |
21 """ |
22 Class defining the supported result categories. |
22 Class defining the supported result categories. |