Skip to content

Commit

Permalink
Disable TensorFlow tests to allow Travis macOS builds to succeed. (cm…
Browse files Browse the repository at this point in the history
  • Loading branch information
mbutrovich authored and tli2 committed Jul 3, 2018
1 parent ac431e8 commit 159faed
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/brain/tensorflow_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ namespace test {

class TensorflowTests : public PelotonTest {};

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

TEST_F(TensorflowTests, SineWavePredictionTest) {
// TODO: Enable this test once tensorflow package supports Python 3.7 (#1448)
TEST_F(TensorflowTests, DISABLED_SineWavePredictionTest) {
// Sine Wave prediction test works here
int NUM_SAMPLES = 1000;
int NUM_WAVES = 3;
Expand Down

0 comments on commit 159faed

Please sign in to comment.