Skip to content

Commit c8eeaf1

Browse files
committed
Add TensorFlow Cloud
http://b/171318603
1 parent 4e3b88e commit c8eeaf1

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -442,6 +442,7 @@ RUN pip install flashtext && \
442442
# papermill can replace nbconvert for executing notebooks
443443
pip install papermill && \
444444
pip install cloud-tpu-client && \
445+
pip install tensorflow-cloud && \
445446
pip install tensorflow-datasets && \
446447
pip install pydub && \
447448
pip install pydegensac && \

tests/test_tensorflow_cloud.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import unittest
2+
3+
import tensorflow_cloud as tfc
4+
5+
6+
class TestTensorflowCloud(unittest.TestCase):
7+
def test_remote(self):
8+
self.assertFalse(tfc.remote())

0 commit comments

Comments
 (0)