File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -37,20 +37,25 @@ jobs:
3737 pip install -e .
3838 - name : Run Standard Tests
3939 run : |
40+ pip install "git+https://github.com/googleapis/python-storage@main#egg=google-cloud-storage" --force-reinstall --no-cache-dir --upgrade
4041 export GOOGLE_APPLICATION_CREDENTIALS=$(pwd)/gcsfs/tests/fake-secret.json
4142 pytest -vv -s \
4243 --log-format="%(asctime)s %(levelname)s %(message)s" \
4344 --log-date-format="%H:%M:%S" \
4445 gcsfs/ \
45- --ignore=gcsfs/tests/test_extended_gcsfs.py
46+ --ignore=gcsfs/tests/test_extended_gcsfs.py \
47+ --ignore=gcsfs/tests/test_zonal_file.py
48+
4649 - name : Run Extended Tests
4750 run : |
51+ pip install "git+https://github.com/googleapis/python-storage@main#egg=google-cloud-storage" --force-reinstall --no-cache-dir --upgrade
4852 export GOOGLE_APPLICATION_CREDENTIALS=$(pwd)/gcsfs/tests/fake-secret.json
4953 export GCSFS_EXPERIMENTAL_ZB_HNS_SUPPORT="true"
5054 pytest -vv -s \
5155 --log-format="%(asctime)s %(levelname)s %(message)s" \
5256 --log-date-format="%H:%M:%S" \
53- gcsfs/tests/test_extended_gcsfs.py
57+ gcsfs/tests/test_extended_gcsfs.py \
58+ gcsfs/tests/test_zonal_file.py
5459
5560 lint :
5661 name : lint
You can’t perform that action at this time.
0 commit comments