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

Commit

Permalink
Merge branch 'master' into pg_constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
tli2 authored Jul 3, 2018
2 parents fe5697e + c949481 commit 25a3d0c
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 25a3d0c

Please sign in to comment.