Run debug test through pytest to reproduce actual crash #7
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |