File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 41
41
rm -rf tensorflow_io
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
- python -m pip install pytest-benchmark boto3 google-cloud-storage==1.32.0
44
+ python -m pip install pytest-benchmark boto3 google-cloud-storage==1.32.0 azure-storage-blob==12.7.1
45
45
python -m pip freeze
46
46
python -c 'import tensorflow as tf; print(tf.version.VERSION)'
47
47
python -c 'import tensorflow_io as tfio; print(tfio.version.VERSION)'
78
78
rm -rf tensorflow_io
79
79
echo ${{ matrix.version }} | awk -F: '{print $1}' | xargs python -m pip install -U
80
80
echo ${{ matrix.version }} | awk -F: '{print $2}' | xargs python -m pip install --no-deps -U
81
- python -m pip install pytest-benchmark boto3 google-cloud-storage==1.32.0
81
+ python -m pip install pytest-benchmark boto3 google-cloud-storage==1.32.0 azure-storage-blob==12.7.1
82
82
python -m pip freeze
83
83
python -c 'import tensorflow as tf; print(tf.version.VERSION)'
84
84
python -c 'import tensorflow_io as tfio; print(tfio.version.VERSION)'
Original file line number Diff line number Diff line change 32
32
rm -rf tensorflow_io
33
33
echo ${{ matrix.version }} | awk -F: '{print $1}' | xargs python -m pip install -U
34
34
echo ${{ matrix.version }} | awk -F: '{print $2}' | xargs python -m pip install --no-deps -U
35
- python -m pip install -q scikit-image pytest pytest-benchmark boto3 fastavro avro-python3 scikit-image pandas pyarrow==2.0.0 google-cloud-pubsub==2.1.0 google-cloud-bigquery-storage==1.1.0 google-cloud-bigquery==2.3.1 google-cloud-storage==1.32.0
35
+ python -m pip install -q scikit-image pytest pytest-benchmark boto3 fastavro avro-python3 scikit-image pandas pyarrow==2.0.0 google-cloud-pubsub==2.1.0 google-cloud-bigquery-storage==1.1.0 google-cloud-bigquery==2.3.1 google-cloud-storage==1.32.0 azure-storage-blob==12.7.1
36
36
python -m pip freeze
37
37
python -c 'import tensorflow as tf; print(tf.version.VERSION)'
38
38
python -c 'import tensorflow_io as tfio; print(tfio.version.VERSION)'
66
66
rm -rf tensorflow_io
67
67
echo ${{ matrix.version }} | awk -F: '{print $1}' | xargs python -m pip install -U
68
68
echo ${{ matrix.version }} | awk -F: '{print $2}' | xargs python -m pip install --no-deps -U
69
- python -m pip install -q scikit-image pytest pytest-benchmark boto3 fastavro avro-python3 scikit-image pandas pyarrow==2.0.0 google-cloud-pubsub==2.1.0 google-cloud-bigquery-storage==1.1.0 google-cloud-bigquery==2.3.1 google-cloud-storage==1.32.0
69
+ python -m pip install -q scikit-image pytest pytest-benchmark boto3 fastavro avro-python3 scikit-image pandas pyarrow==2.0.0 google-cloud-pubsub==2.1.0 google-cloud-bigquery-storage==1.1.0 google-cloud-bigquery==2.3.1 google-cloud-storage==1.32.0 azure-storage-blob==12.7.1
70
70
python -m pip freeze
71
71
python -c 'import tensorflow as tf; print(tf.version.VERSION)'
72
72
python -c 'import tensorflow_io as tfio; print(tfio.version.VERSION)'
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ run_test() {
6
6
entry=$1
7
7
CPYTHON_VERSION=$( $entry -c ' import sys; print(str(sys.version_info[0])+str(sys.version_info[1]))' )
8
8
(cd wheelhouse && $entry -m pip install tensorflow_io-* -cp${CPYTHON_VERSION} -* .whl)
9
- $entry -m pip install -q pytest pytest-benchmark boto3 fastavro avro-python3 scikit-image pandas pyarrow==3.0.0 google-cloud-pubsub==2.1.0 google-cloud-bigtable==1.6.0 google-cloud-bigquery-storage==1.1.0 google-cloud-bigquery==2.3.1 google-cloud-storage==1.32.0
9
+ $entry -m pip install -q pytest pytest-benchmark boto3 fastavro avro-python3 scikit-image pandas pyarrow==3.0.0 google-cloud-pubsub==2.1.0 google-cloud-bigtable==1.6.0 google-cloud-bigquery-storage==1.1.0 google-cloud-bigquery==2.3.1 google-cloud-storage==1.32.0 azure-storage-blob==12.7.1
10
10
(cd tests && $entry -m pytest --benchmark-disable -v --import-mode=append $( find . -type f \( -iname " test_*_v1.py" \) ) )
11
11
(cd tests && $entry -m pytest --benchmark-disable -v --import-mode=append $( find . -type f \( -iname " test_*.py" ! \( -iname " test_*_v1.py" -o -iname " test_bigquery.py" \) \) ) )
12
12
# GRPC and test_bigquery tests have to be executed separately because of https://github.com/grpc/grpc/issues/20034
You can’t perform that action at this time.
0 commit comments