Skip to content

Commit

Permalink
#120 Enabled all tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ahsimb committed Jul 2, 2024
1 parent 12e1026 commit 8b595a1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion tests/ci_tests/test_deploying_autopilot.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def _deploy_endpoint(job_name, endpoint_name, model_setup_params, ci_test_env: C
assert endpoint_name in list(map(lambda x: x[0], all_scripts))


@pytest.mark.skip('Debugging')
@pytest.mark.slow
def test_deploy_autopilot_endpoint(prepare_ci_test_environment):
curr_datetime = datetime.now().strftime("%y%m%d%H%M%S")
model_name = ''.join((cls_model_setup_params.model_type, curr_datetime))
Expand Down
2 changes: 1 addition & 1 deletion tests/ci_tests/test_polling_autopilot.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from tests.ci_tests.utils.parameters import cls_model_setup_params


@pytest.mark.skip('Debugging')
@pytest.mark.slow
def test_poll_autopilot_job(prepare_ci_test_environment):
curr_datetime = datetime.now().strftime("%y%m%d%H%M%S")
model_name = ''.join((cls_model_setup_params.model_type, curr_datetime))
Expand Down
4 changes: 2 additions & 2 deletions tests/ci_tests/test_predicting_autopilot.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def _make_prediction(job_name, endpoint_name, model_setup_params, ci_test_env: C
assert predictions


@pytest.mark.skip('Debugging')
@pytest.mark.slow
def test_predict_autopilot_regression_job(prepare_ci_test_environment):
curr_datetime = datetime.now().strftime("%y%m%d%H%M%S")
model_name = ''.join((reg_model_setup_params.model_type, curr_datetime))
Expand All @@ -73,7 +73,7 @@ def test_predict_autopilot_regression_job(prepare_ci_test_environment):
db_conn=prepare_ci_test_environment)


@pytest.mark.skip('Debugging')
@pytest.mark.slow
def test_predict_autopilot_classification_job(prepare_ci_test_environment):
curr_datetime = datetime.now().strftime("%y%m%d%H%M%S")
model_name = ''.join((cls_model_setup_params.model_type, curr_datetime))
Expand Down
4 changes: 2 additions & 2 deletions tests/ci_tests/test_training_autopilot.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from tests.ci_tests.utils.queries import DatabaseQueries


@pytest.mark.skip('Debugging')
@pytest.mark.slow
def test_train_autopilot_regression_job(prepare_ci_test_environment):
curr_datetime = datetime.now().strftime("%y%m%d%H%M%S")
model_name = ''.join((reg_model_setup_params.model_type, curr_datetime))
Expand All @@ -23,7 +23,7 @@ def test_train_autopilot_regression_job(prepare_ci_test_environment):
job_name, reg_model_setup_params, prepare_ci_test_environment)


@pytest.mark.skip('Debugging')
@pytest.mark.slow
def test_train_autopilot_classification_job(prepare_ci_test_environment):
curr_datetime = datetime.now().strftime("%y%m%d%H%M%S")
model_name = ''.join((cls_model_setup_params.model_type, curr_datetime))
Expand Down

0 comments on commit 8b595a1

Please sign in to comment.