Skip to content

Commit

Permalink
chore(ci): temporarily disable test_doctests job
Browse files Browse the repository at this point in the history
  • Loading branch information
kszucs committed Dec 18, 2023
1 parent 29b5712 commit 97806df
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ibis-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,11 @@ jobs:

- name: run all core tests and run benchmarks once parallel
if: matrix.os != 'windows-latest'
run: pytest -v -n auto ibis/common ibis/expr ibis/tests ibis/formats
run: poetry run pytest -v -n auto ibis/common ibis/expr ibis/tests ibis/formats

- name: run all core tests and run benchmarks once serial
if: matrix.os == 'windows-latest'
run: pytest -v ibis/common ibis/expr ibis/tests ibis/formats
run: poetry run pytest -v ibis/common ibis/expr ibis/tests ibis/formats

- name: upload code coverage
if: success()
Expand Down Expand Up @@ -153,6 +153,8 @@ jobs:
run: poetry run python -c 'import shapely.geometry, duckdb'

test_doctests:
# FIXME(kszucs): re-enable this build
if: false
name: Doctests
runs-on: ${{ matrix.os }}
strategy:
Expand Down

0 comments on commit 97806df

Please sign in to comment.