Source code for moe_examples.tests.mean_and_var_of_gp_from_historic_data_test

# -*- coding: utf-8 -*-
"""Integration test for mean_and_var_of_gp_from_historic_data MOE example."""
from moe_examples.tests.moe_example_test_case import MoeExampleTestCase
from moe_examples.mean_and_var_of_gp_from_historic_data import run_example


[docs]class TestMeanAndVarOfGpFromHistoricData(MoeExampleTestCase): """Test the mean_and_var_of_gp_from_historic_data MOE example."""
[docs] def test_example_runs(self): """Simple integration test for example.""" run_example( verbose=False, testapp=self.testapp, rest_port=1337, )