Skip to content
Open
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
10 changes: 3 additions & 7 deletions .github/actions/Build_and_Test_cppyy/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ runs:
# Install cppyy
git clone --depth=1 https://github.com/compiler-research/cppyy.git
cd cppyy
python -m pip install --upgrade pip
python -m pip install uv
python -m pip install -r requirements.txt
python -m pip install --upgrade . --no-deps
cd ..

Expand All @@ -74,14 +76,8 @@ runs:
# Run the tests
source .venv/bin/activate
cd cppyy/test
echo ::group::Prepare For Testing
echo ::group::Build test dictionaries
make all
python -m pip install --upgrade pip
python -m pip install pytest
python -m pip install pytest-xdist
if [[ "${{ matrix.python-version }}" != "3.14" ]]; then
python -m uv pip install numba==0.61.2
fi
echo ::endgroup::
echo ::group::Run complete test suite
set -o pipefail
Expand Down
Loading