Skip to content

fix: fix invalid dtype setting in array #4330

fix: fix invalid dtype setting in array

fix: fix invalid dtype setting in array #4330

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:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
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