Skip to content

Fix garbled Chinese log messages, bare except clauses, and unsafe empty-list access in EIS processing #14

Fix garbled Chinese log messages, bare except clauses, and unsafe empty-list access in EIS processing

Fix garbled Chinese log messages, bare except clauses, and unsafe empty-list access in EIS processing #14

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Run check
run: python run_v6.py check
- name: Run smoke
run: python run_v6.py smoke --port 8011
- name: Run server tests
run: python -m pytest -q tests/test_v6_server.py