fix: Handle DST transitions in group_by_dynamic (#25410) #19296
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: Test Bytecode Parser | |
| on: | |
| pull_request: | |
| paths: | |
| - py-polars/** | |
| - .github/workflows/test-bytecode-parser.yml | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| ubuntu: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| # Only the versions that are not already run as part of the regular test suite | |
| python-version: ['3.10', '3.11'] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: pip install ipython numpy pytest | |
| - name: Run tests | |
| env: | |
| PYTHONPATH: "py-polars/src:py-polars/runtime/polars-runtime-32:py-polars" | |
| run: pytest .github/scripts/test_bytecode_parser.py |