You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PYTHONWARNINGS="ignore::UserWarning:fs" python -m pytest src/ tests/ -m "not optional_deps and not ci_performance" -vv -n auto --dist loadscope --max-worker-restart 3 --cov=src/tsbootstrap --cov-report=xml --cov-report=term
252
252
shell: bash
253
253
254
254
- name: Run Core Tests (Windows)
255
255
if: runner.os == 'Windows'
256
256
run: |
257
257
.\.venv\Scripts\Activate.ps1
258
-
python -m pytest src/ tests/ -m "not optional_deps and not slow" -vv -n auto --dist loadscope --max-worker-restart 3 --cov=src/tsbootstrap --cov-report=xml --cov-report=term
258
+
$env:PYTHONWARNINGS="ignore::UserWarning:fs"
259
+
python -m pytest src/ tests/ -m "not optional_deps and not slow and not ci_performance" -vv -n auto --dist loadscope --max-worker-restart 3 --cov=src/tsbootstrap --cov-report=xml --cov-report=term
259
260
shell: pwsh
260
261
261
262
# Job to test optional features that require additional dependencies
PYTHONWARNINGS="ignore::UserWarning:fs" python -m pytest src/ tests/ -m "optional_deps and not ci_performance" -vv -n auto --dist loadscope --max-worker-restart 3 --cov=src/tsbootstrap --cov-report=xml --cov-report=term
373
374
shell: bash
374
375
375
376
- name: Run Optional Features Tests (Windows)
376
377
if: runner.os == 'Windows'
377
378
run: |
378
379
.\.venv\Scripts\Activate.ps1
379
-
python -m pytest src/ tests/ -m "optional_deps and not slow" -vv -n auto --dist loadscope --max-worker-restart 3 --cov=src/tsbootstrap --cov-report=xml --cov-report=term
380
+
$env:PYTHONWARNINGS="ignore::UserWarning:fs"
381
+
python -m pytest src/ tests/ -m "optional_deps and not slow and not ci_performance" -vv -n auto --dist loadscope --max-worker-restart 3 --cov=src/tsbootstrap --cov-report=xml --cov-report=term
380
382
shell: pwsh
381
383
382
384
# Step 12: Generate coverage markdown report
@@ -481,6 +483,7 @@ jobs:
481
483
# Step 6: Generate lock file for reproducible CI builds
482
484
- name: Generate lock file
483
485
run: |
486
+
# Include base dependencies plus extras for docs build
UserWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html
10
+
```
11
+
12
+
These warnings come from the `fs` package (version 2.4.16), which is a dependency of `fugue` (used for testing). The `fs` package still uses the deprecated `pkg_resources` API.
0 commit comments