4242 run : >-
4343 python -m pytest tests/unit/ -x
4444 -m online -c /dev/null -p no:warnings
45- -n 0 -v -o cache_dir=.pytest-cache
45+ -n 0 -v -o cache_dir=${GITHUB_WORKSPACE}/ .pytest-cache
4646 offline_unit_tests :
4747 runs-on : ubuntu-latest
4848 timeout-minutes : 40
6767 run : >-
6868 python -m pytest tests/unit/ -x
6969 -m offline -c /dev/null -p no:warnings
70- -n 0 -v -o cache_dir=.pytest-cache
70+ -n 0 -v -o cache_dir=${GITHUB_WORKSPACE}/ .pytest-cache
7171 online_functional_tests :
7272 runs-on : ubuntu-latest
7373 timeout-minutes : 40
9292 run : >-
9393 python -m pytest tests/functional/ -x
9494 -m online -c /dev/null -p no:warnings
95- -n 0 -v -o cache_dir=.pytest-cache
95+ -n 0 -v -o cache_dir=${GITHUB_WORKSPACE}/ .pytest-cache
9696 offline_functional_tests :
9797 runs-on : ubuntu-latest
9898 timeout-minutes : 40
@@ -117,7 +117,7 @@ jobs:
117117 run : >-
118118 python -m pytest tests/functional/ -x
119119 -m offline -c /dev/null -p no:warnings
120- -n 0 -v -o cache_dir=.pytest-cache
120+ -n 0 -v -o cache_dir=${GITHUB_WORKSPACE}/ .pytest-cache
121121 other_unit_tests :
122122 runs-on : ubuntu-latest
123123 timeout-minutes : 40
@@ -143,7 +143,7 @@ jobs:
143143 python -m pytest tests/unit/ -x
144144 -m 'not offline' -m 'not online'
145145 -m 'not scenario' -c /dev/null
146- -p no:warnings -n 0 -v -o cache_dir=.pytest-cache
146+ -p no:warnings -n 0 -v -o cache_dir=${GITHUB_WORKSPACE}/ .pytest-cache
147147 other_functional_tests :
148148 runs-on : ubuntu-latest
149149 timeout-minutes : 40
@@ -169,4 +169,4 @@ jobs:
169169 python -m pytest tests/functional/ -x
170170 -m 'not offline' -m 'not online'
171171 -m 'not scenario' -c /dev/null
172- -p no:warnings -n 0 -v -o cache_dir=.pytest-cache
172+ -p no:warnings -n 0 -v -o cache_dir=${GITHUB_WORKSPACE}/ .pytest-cache
0 commit comments