Skip to content

Commit

Permalink
simplify
Browse files Browse the repository at this point in the history
  • Loading branch information
c-peters committed Feb 27, 2024
1 parent 353b6bd commit 03c7f45
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,10 @@ jobs:
python-version: '3.10'

# HACK: zlib-ng fails to compile (possibly threading issue), for now use the slower rust backend
- name: Find and Replace
- name: Replace zlib-ng with slower backend
shell: bash
run: |
find .. -type f -name 'Cargo.toml' -exec sed -i '' 's/zlib-ng/rust_backend/g' {} +
cat ../crates/polars-io/Cargo.toml
- name: Create virtual environment
run: |
Expand Down Expand Up @@ -102,6 +101,15 @@ jobs:
- name: Report coverage
run: cargo llvm-cov report --lcov --output-path coverage.lcov

- name: Archive code coverage results
uses: actions/upload-artifact@v4
with:
name: code-coverage-report
path: |
py-polars/coverage.lcov
py-polars/main.xml
py-polars/async.xml
- name: Upload coverage information
uses: codecov/codecov-action@v4
with:
Expand Down

0 comments on commit 03c7f45

Please sign in to comment.