Skip to content

Run debug test through pytest to reproduce actual crash #7

Run debug test through pytest to reproduce actual crash

Run debug test through pytest to reproduce actual crash #7

Workflow file for this run

name: Debug Unicode Crash
on:
push:
jobs:
debug-unicode:
runs-on: windows-latest
strategy:
matrix:
python: ["3.14"]
architecture: [x86]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
architecture: ${{ matrix.architecture }}
- name: Run minimal Unicode test
run: python debug_unicode.py
- name: Run with pytest
run: |
pip install pytest
pytest debug_unicode.py -v