Skip to content

Commit 4f40eb7

Browse files
committed
ci: Align macos script with current linux
1 parent ae26cd8 commit 4f40eb7

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,4 +98,4 @@ jobs:
9898
runs-on: macos-latest
9999
steps:
100100
- uses: actions/checkout@v4
101-
- run: env PYTESTFLAGS=--verbose test/macos-script.sh
101+
- run: env PYTESTFLAGS="--verbose -p no:cacheprovider" test/macos-script.sh

test/macos-script.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ brew install \
1010

1111
python3 -m pip install -r test/requirements.txt
1212

13+
oldpwd=$(pwd)
14+
cp -a . /work
15+
cd /work
16+
1317
export bashcomp_bash=bash
1418
env
1519

@@ -18,5 +22,5 @@ autoreconf -i
1822
make -j
1923

2024
make distcheck \
21-
PYTESTFLAGS="${PYTESTFLAGS---verbose --numprocesses=auto --dist=loadfile}"
25+
PYTESTFLAGS="${PYTESTFLAGS---verbose -p no:cacheprovider --numprocesses=auto --dist=loadfile}"
2226
cp -p bash-completion-*.tar.* "$oldpwd/"

0 commit comments

Comments
 (0)