Skip to content
Merged
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: 10 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,14 @@ jobs:
fi

git diff --name-only ${{ github.event.pull_request.base.sha }} ${{ github.sha }} > .ci/changed.txt
echo "Changed files:"
cat .ci/changed.txt || true
echo "Test map exists:"
if [ -f .ci/test-map.json ]; then
echo "yes (size=$(wc -c < .ci/test-map.json))"
else
echo "no"
fi

python tools/ci/select_tests.py \
--map .ci/test-map.json \
Expand All @@ -64,6 +72,8 @@ jobs:
--always-full 'ultraplot/__init__.py' \
--ignore 'docs/**' \
--ignore 'README.rst'
echo "Selection output:"
cat .ci/selection.json || true

python - <<'PY' > .ci/selection.out
import json
Expand Down