File tree Expand file tree Collapse file tree 7 files changed +217
-1048
lines changed Expand file tree Collapse file tree 7 files changed +217
-1048
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -5,10 +5,10 @@ TSignal requires Python 3.10 or higher.
5
5
6
6
TSignal uses Python's standard logging module with the following levels:
7
7
8
- - DEBUG: Detailed information about signal-slot connections and emissions
9
- - INFO: Important state changes and major events
10
- - WARNING: Potential issues that don't affect functionality
11
- - ERROR: Exceptions and failures
8
+ - ` DEBUG ` : Detailed information about signal-slot connections and emissions
9
+ - ` INFO ` : Important state changes and major events
10
+ - ` WARNING ` : Potential issues that don't affect functionality
11
+ - ` ERROR ` : Exceptions and failures
12
12
13
13
To enable debug logging in tests:
14
14
``` bash
Original file line number Diff line number Diff line change @@ -10,13 +10,18 @@ tests/
10
10
├── conftest.py # Shared fixtures and configurations
11
11
├── unit/ # Unit tests
12
12
│ ├── __init__.py
13
+ │ ├── test_property.py
13
14
│ ├── test_signal.py
14
15
│ ├── test_slot.py
15
- │ └── test_with_signals .py
16
+ │ └── test_utils .py
16
17
├── integration/ # Integration tests
17
18
│ ├── __init__.py
18
19
│ ├── test_async.py
19
- │ └── test_threading.py
20
+ │ ├── test_threading.py
21
+ │ ├── test_with_signals.py
22
+ │ ├── test_worker_signal.py
23
+ │ ├── test_worker_queue.py
24
+ │ └── test_worker.py
20
25
└── performance/ # Performance and stress tests
21
26
├── __init__.py
22
27
├── test_stress.py
You can’t perform that action at this time.
0 commit comments