perf: Reduce size of optional join-indexes #447
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: Code coverage | |
on: | |
pull_request: | |
paths: | |
- '**.rs' | |
- '**.py' | |
- .github/workflows/codecov.yml | |
push: | |
branches: | |
- main | |
paths: | |
- '**.rs' | |
- '**.py' | |
- .github/workflows/codecov.yml | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
defaults: | |
run: | |
working-directory: py-polars | |
shell: bash | |
jobs: | |
coverage: | |
name: Code Coverage | |
runs-on: macos-latest | |
env: | |
RUSTFLAGS: '-C instrument-coverage --cfg=coverage --cfg=coverage_nightly --cfg=trybuild_no_target' | |
RUST_BACKTRACE: 1 | |
LLVM_PROFILE_FILE: '/Users/runner/work/polars/polars/target/polars-%p-%3m.profraw' | |
CARGO_LLVM_COV: 1 | |
CARGO_LLVM_COV_SHOW_ENV: 1 | |
CARGO_LLVM_COV_TARGET_DIR: '/Users/runner/work/polars/polars/target' | |
# Workaround for issue compiling libz-ng-sys crate on macOS (resource temporarily unavailable) | |
# See: https://github.com/pola-rs/polars/pull/14715 | |
CMAKE_BUILD_PARALLEL_LEVEL: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Create virtual environment | |
run: | | |
python -m venv .venv | |
echo "$GITHUB_WORKSPACE/py-polars/.venv/bin" >> $GITHUB_PATH | |
- name: Install dependencies | |
run: pip install -r requirements-dev.txt | |
- name: Set up Rust | |
run: rustup component add llvm-tools-preview | |
- name: Install cargo-llvm-cov | |
uses: taiki-e/install-action@cargo-llvm-cov | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
save-if: ${{ github.ref_name == 'main' }} | |
- name: Prepare coverage | |
run: cargo llvm-cov clean --workspace | |
- name: Run tests | |
run: > | |
cargo test --all-features | |
-p polars-arrow | |
-p polars-compute | |
-p polars-core | |
-p polars-io | |
-p polars-lazy | |
-p polars-ops | |
-p polars-plan | |
-p polars-row | |
-p polars-sql | |
-p polars-time | |
-p polars-utils | |
- name: Run Rust integration tests | |
run: cargo test --all-features -p polars --test it | |
- name: Install Polars | |
run: maturin develop | |
- name: Run Python tests | |
run: pytest --cov -n auto --dist loadgroup -m "not benchmark and not docs" --cov-report xml:main.xml | |
continue-on-error: true | |
- name: Run Python tests - async reader | |
env: | |
POLARS_FORCE_ASYNC: 1 | |
run: pytest --cov -m "not benchmark and not docs" tests/unit/io/ --cov-report xml:async.xml | |
continue-on-error: true | |
- name: Report coverage | |
run: cargo llvm-cov report --lcov --output-path coverage.lcov | |
- name: Upload coverage information | |
uses: codecov/codecov-action@v4 | |
with: | |
files: py-polars/coverage.lcov,py-polars/main.xml,py-polars/async.xml | |
name: macos | |
token: ${{ secrets.CODECOV_TOKEN }} |