From 59ed92a57cb860d5cc41e6502dccddb4e13ec072 Mon Sep 17 00:00:00 2001 From: Sammy Sidhu Date: Sun, 27 Aug 2023 23:22:49 -0700 Subject: [PATCH] [BUG] make seperate file for new query planner (#1309) --- .github/workflows/python-package.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index cc2eb12639..4c88f9c928 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -71,8 +71,8 @@ jobs: maturin develop mkdir -p report-output && pytest --cov=daft --ignore tests/integration --durations=50 coverage combine -a --data-file='.coverage' || true - coverage xml -o ./report-output/coverage-${{ runner.os }}-${{ matrix.python-version }}-${{ matrix.daft-runner }}.xml - # cargo llvm-cov --no-run --lcov --output-path report-output/rust-coverage-${{ runner.os }}-${{ matrix.python-version }}-${{ matrix.daft-runner }}.lcov + coverage xml -o ./report-output/coverage-${{ runner.os }}-${{ matrix.python-version }}-${{ matrix.daft-runner }}-${{ matrix.pyarrow-version }}-${{ matrix.new-query-planner }}.xml + # cargo llvm-cov --no-run --lcov --output-path report-output/rust-coverage-${{ runner.os }}-${{ matrix.python-version }}-${{ matrix.daft-runner }}-${{ matrix.pyarrow-version }}-${{ matrix.new-query-planner }}.lcov env: DAFT_RUNNER: ${{ matrix.daft-runner }} DAFT_NEW_QUERY_PLANNER: ${{ matrix.new-query-planner }}