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.
55
66TSignal uses Python's standard logging module with the following levels:
77
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
1212
1313To enable debug logging in tests:
1414``` bash
Original file line number Diff line number Diff line change @@ -10,13 +10,18 @@ tests/
1010├── conftest.py # Shared fixtures and configurations
1111├── unit/ # Unit tests
1212│ ├── __init__.py
13+ │ ├── test_property.py
1314│ ├── test_signal.py
1415│ ├── test_slot.py
15- │ └── test_with_signals .py
16+ │ └── test_utils .py
1617├── integration/ # Integration tests
1718│ ├── __init__.py
1819│ ├── 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
2025└── performance/ # Performance and stress tests
2126 ├── __init__.py
2227 ├── test_stress.py
You can’t perform that action at this time.
0 commit comments