@@ -42,14 +42,15 @@ jobs:
42
42
echo ${{ matrix.version }} | awk -F: '{print $1}' | xargs python -m pip install -U
43
43
echo ${{ matrix.version }} | awk -F: '{print $2}' | xargs python -m pip install --no-deps -U
44
44
if [[ "${{ matrix.version }}" == *"tensorflow-io-nightly"* ]]; then python -m pip install tensorflow-io-plugin-gs-nightly ; fi
45
- python -m pip install pytest-benchmark boto3 google-cloud-storage==1.32.0
45
+ python -m pip install pytest-benchmark boto3 google-cloud-storage==1.32.0 azure-storage-blob==12.7.1
46
46
python -m pip freeze
47
47
python -c 'import tensorflow as tf; print(tf.version.VERSION)'
48
48
python -c 'import tensorflow_io as tfio; print(tfio.version.VERSION)'
49
49
python -m pytest -s -v tests/test_http.py
50
50
python -m pytest -s -v tests/test_s3.py
51
51
python -m pytest -s -v tests/test_azure.py
52
52
python -m pytest -s -v tests/test_gcs.py
53
+ python -m pytest -s -v tests/test_filesystem.py
53
54
54
55
linux :
55
56
name : Linux ${{ matrix.python }} + ${{ matrix.version }}
@@ -80,14 +81,15 @@ jobs:
80
81
echo ${{ matrix.version }} | awk -F: '{print $1}' | xargs python -m pip install -U
81
82
echo ${{ matrix.version }} | awk -F: '{print $2}' | xargs python -m pip install --no-deps -U
82
83
if [[ "${{ matrix.version }}" == *"tensorflow-io-nightly"* ]]; then python -m pip install tensorflow-io-plugin-gs-nightly ; fi
83
- python -m pip install pytest-benchmark boto3 google-cloud-storage==1.32.0
84
+ python -m pip install pytest-benchmark boto3 google-cloud-storage==1.32.0 azure-storage-blob==12.7.1
84
85
python -m pip freeze
85
86
python -c 'import tensorflow as tf; print(tf.version.VERSION)'
86
87
python -c 'import tensorflow_io as tfio; print(tfio.version.VERSION)'
87
88
python -m pytest -s -v tests/test_http.py
88
89
python -m pytest -s -v tests/test_s3.py
89
90
python -m pytest -s -v tests/test_azure.py
90
91
if [[ "${{ matrix.version }}" != "tf-nightly:tensorflow-io" ]]; then python -m pytest -s -v tests/test_gcs.py ; fi
92
+ python -m pytest -s -v tests/test_filesystem.py
91
93
92
94
windows :
93
95
name : Windows ${{ matrix.python }} + ${{ matrix.version }}
0 commit comments