feat: Support Struct
field selection in the SQL engine, RENAME
and REPLACE
select wildcard options
#8540
Workflow file for this run
This file contains 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.9', '3.10'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: pip install ipython numpy pytest | |
- name: Run tests | |
env: | |
PYTHONPATH: py-polars | |
run: pytest .github/scripts/test_bytecode_parser.py |