Skip to content

Commit 9849551

Browse files
committed
Review feedback
1 parent 42d4e9e commit 9849551

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/actions/setup-ccache/action.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ runs:
2323
uses: hendrikmuhs/[email protected]
2424
with:
2525
variant: sccache
26-
key: ${{ runner.os }}--${{ runner.arch }}--${{ github.workflow }}--${{ steps.get-date.outputs.today }}--${{ inputs.extra-cache-key }}
26+
key: ${{ env.CACHE_VERSION }}--${{ runner.os }}--${{ runner.arch }}--${{ github.workflow }}--${{ steps.get-date.outputs.today }}--${{ inputs.extra-cache-key }}
2727
env:
2828
TMP: "${{ steps.mktemp.outputs.tmpdir }}"
29+
# Bump this number to manually invalidate the cache.
30+
CACHE_VERSION: 0

ci/run_tests.sh

-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
#!/bin/bash -e
2-
python -c 'import pandas; pandas.show_versions()'
3-
exit 0
42

53
# Workaround for pytest-xdist (it collects different tests in the workers if PYTHONHASHSEED is not set)
64
# https://github.com/pytest-dev/pytest/issues/920

0 commit comments

Comments
 (0)