Skip to content

Commit e794989

Browse files
committed
cleanup
1 parent a54ad7f commit e794989

File tree

7 files changed

+217
-1048
lines changed

7 files changed

+217
-1048
lines changed

api.md

Lines changed: 0 additions & 294 deletions
This file was deleted.

docs/logging.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ TSignal requires Python 3.10 or higher.
55

66
TSignal 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

1313
To enable debug logging in tests:
1414
```bash

docs/testing.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)