Skip to content
This repository was archived by the owner on Sep 27, 2019. It is now read-only.

Commit c949481

Browse files
mbutrovichtli2
authored andcommitted
Disable TensorFlow tests to allow Travis macOS builds to succeed. (#1449)
1 parent 6cc5559 commit c949481

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/brain/tensorflow_test.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ namespace test {
2828

2929
class TensorflowTests : public PelotonTest {};
3030

31-
TEST_F(TensorflowTests, BasicTFTest) {
31+
// TODO: Enable this test once tensorflow package supports Python 3.7 (#1448)
32+
TEST_F(TensorflowTests, DISABLED_BasicTFTest) {
3233
// Check that the tensorflow library imports and prints version info correctly
3334
EXPECT_TRUE(brain::TFUtil::GetTFVersion());
3435
}
@@ -40,7 +41,8 @@ TEST_F(TensorflowTests, BasicEigenTest) {
4041
EXPECT_TRUE(m.IsRowMajor);
4142
}
4243

43-
TEST_F(TensorflowTests, SineWavePredictionTest) {
44+
// TODO: Enable this test once tensorflow package supports Python 3.7 (#1448)
45+
TEST_F(TensorflowTests, DISABLED_SineWavePredictionTest) {
4446
// Sine Wave prediction test works here
4547
int NUM_SAMPLES = 1000;
4648
int NUM_WAVES = 3;

0 commit comments

Comments
 (0)