ci: run full Botty validation

This commit is contained in:
alex
2026-06-07 18:19:24 +02:00
parent 8ccdca7946
commit d0ecf3afdc
+6 -2
View File
@@ -1,5 +1,6 @@
name: Botty - CI
on:
workflow_dispatch:
pull_request:
push:
branches: [main, mine]
@@ -21,14 +22,17 @@ jobs:
environment-file: environment.yml
use-only-tar-bz2: false
- name: Pytest
- name: Validate Botty
shell: powershell
env:
PYTHONPATH: ./src
RUN_ENV: test
run: |
$ErrorActionPreference = "Stop"
C:\Miniconda\condabin\conda.bat activate botty
python -c "import sys; print(sys.version)"
coverage run -m pytest test/smoke_test.py test/nip/ test/game_stats_test.py test/closest_non_hud_test.py test/transmute/ test/test_setup_bat_files.py -v -s
python -m compileall -q src tools test
coverage run -m pytest
coverage xml
build: