Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -255,9 +255,15 @@ jobs:
with:
path: ${{ steps.ccache-info.outputs.cache-dir }}
key: python-ccache-macos-${{ matrix.macos-version }}
- name: Test
shell: bash
run: ci/scripts/python_test.sh $(pwd) $(pwd)/build
- name: Trigger mimalloc crash
run: |
pip install streamlit kglite
python -c "import pyarrow, streamlit, kglite"
python -c "import kglite, pyarrow, streamlit"
python -c "import streamlit, kglite, pyarrow"
# - name: Test
# shell: bash
# run: ci/scripts/python_test.sh $(pwd) $(pwd)/build

windows:
name: AMD64 Windows 2022 Python 3.13
Expand Down
Loading