Skip to content

Commit b07629b

Browse files
committed
* test cache
1 parent 50b1e6d commit b07629b

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,23 @@ jobs:
1111
strategy:
1212
matrix:
1313
# python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
14-
py-version: ["3.10"]
14+
py-version: ["3.9", "3.10"]
1515
name: Linux - Python ${{ matrix.py-version }}
1616

1717
steps:
1818
- uses: actions/checkout@v4
19-
20-
- name: Set up Docker Compose
21-
uses: docker/setup-compose-action@v1
19+
- uses: docker/setup-compose-action@v1
2220

2321
- name: Set up Docker cache dirs
2422
run: |
2523
mkdir -p ~/.cache/pip
2624
2725
- name: Run tests in Docker
28-
run: |
29-
make test ${{ matrix.py-version}}
3026
env:
3127
PIP_CACHE: ~/.cache/pip
3228
REPO_ROOT: ${{ github.workspace }}
29+
run: |
30+
make test ${{ matrix.py-version}}
3331
3432
# test-windows:
3533
# runs-on: windows-latest

bin/run-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ TEST_VERBOSE=${TEST_VERBOSE:=""}
77

88

99
declare -xr REPO_ROOT=$( cd "$( dirname "${BASH_SOURCE[0]}" )/../" && pwd )
10-
declare -xr PIP_CACHE=${REPO_ROOT}/.pip-cache
10+
declare -xr PIP_CACHE=${REPO_ROOT}/.cache/pip
1111

1212
mkdir -p ${PIP_CACHE}
1313
cd "${REPO_ROOT}"

0 commit comments

Comments
 (0)