Skip to content

Commit 9fdcbe0

Browse files
committed
Update ci pipeline to run test_zonal_file with Extended tests only
1 parent 866d61e commit 9fdcbe0

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)