We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e3b88e commit c8eeaf1Copy full SHA for c8eeaf1
Dockerfile
@@ -442,6 +442,7 @@ RUN pip install flashtext && \
442
# papermill can replace nbconvert for executing notebooks
443
pip install papermill && \
444
pip install cloud-tpu-client && \
445
+ pip install tensorflow-cloud && \
446
pip install tensorflow-datasets && \
447
pip install pydub && \
448
pip install pydegensac && \
tests/test_tensorflow_cloud.py
@@ -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