Skip to content

Commit c1bb6b5

Browse files
author
Sebastian
committed
Fix yamlint issues
Signed-off-by: Sebastian <[email protected]>
1 parent 03f3411 commit c1bb6b5

File tree

2 files changed

+14
-15
lines changed

2 files changed

+14
-15
lines changed

.github/workflows/asynctest.yml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
name: 🔄 Async Safety & Performance Testing
2929
runs-on: ubuntu-latest
3030
needs: [test]
31-
31+
3232
strategy:
3333
fail-fast: false
3434
matrix:
@@ -39,39 +39,39 @@ jobs:
3939
uses: actions/checkout@v4
4040
with:
4141
fetch-depth: 1
42-
42+
4343
- name: 🐍 Setup Python ${{ matrix.python }}
4444
uses: actions/setup-python@v5
4545
with:
4646
python-version: ${{ matrix.python }}
4747
cache: pip
48-
48+
4949
- name: 📦 Install dependencies
5050
run: |
5151
python -m pip install --upgrade pip
5252
pip install -e .[dev]
5353
pip install flake8-async flake8-bugbear pytest-asyncio snakeviz aiomonitor
54-
54+
5555
- name: 🔍 Run async linting
5656
run: |
5757
make async-lint
58-
58+
5959
- name: 🐛 Run async debug tests
6060
run: |
6161
make async-debug
62-
62+
6363
- name: 📊 Generate performance profiles
6464
run: |
6565
make profile
66-
66+
6767
- name: ⚡ Run async benchmarks
6868
run: |
6969
make async-benchmark
70-
70+
7171
- name: ✅ Validate async patterns
7272
run: |
7373
make async-validate
74-
74+
7575
- name: 📎 Upload async test artifacts
7676
uses: actions/upload-artifact@v4
7777
with:
@@ -80,11 +80,10 @@ jobs:
8080
async_testing/reports/
8181
async_testing/profiles/
8282
retention-days: 30
83-
83+
8484
- name: 📈 Performance regression check
8585
run: |
8686
python async_testing/check_regression.py \
8787
--current async_testing/profiles/latest.prof \
8888
--baseline async_testing/profiles/baseline.prof \
8989
--threshold 20 # 20% regression threshold
90-

async_testing/config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@ async_linting:
44
mypy_config:
55
warn_unused_coroutine: true
66
strict: true
7-
7+
88
profiling:
99
output_dir: "async_testing/profiles"
1010
snakeviz_port: 8080
1111
profile_scenarios:
12-
- "websocket_stress_test"
12+
- "websocket_stress_test"
1313
- "database_query_performance"
1414
- "concurrent_mcp_calls"
15-
15+
1616
monitoring:
1717
aiomonitor_port: 50101
1818
debug_mode: true
1919
task_tracking: true
20-
20+
2121
performance_thresholds:
2222
websocket_connection: 100 # ms
2323
database_query: 50 # ms

0 commit comments

Comments
 (0)