diff --git a/tests/ci_tests/test_deploying_autopilot.py b/tests/ci_tests/test_deploying_autopilot.py index 9c13130..6fbc9d4 100644 --- a/tests/ci_tests/test_deploying_autopilot.py +++ b/tests/ci_tests/test_deploying_autopilot.py @@ -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)) diff --git a/tests/ci_tests/test_polling_autopilot.py b/tests/ci_tests/test_polling_autopilot.py index b3d0b09..96a824e 100644 --- a/tests/ci_tests/test_polling_autopilot.py +++ b/tests/ci_tests/test_polling_autopilot.py @@ -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)) diff --git a/tests/ci_tests/test_predicting_autopilot.py b/tests/ci_tests/test_predicting_autopilot.py index 6f33f61..b17c83c 100644 --- a/tests/ci_tests/test_predicting_autopilot.py +++ b/tests/ci_tests/test_predicting_autopilot.py @@ -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)) @@ -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)) diff --git a/tests/ci_tests/test_training_autopilot.py b/tests/ci_tests/test_training_autopilot.py index 2795f34..291fe3d 100644 --- a/tests/ci_tests/test_training_autopilot.py +++ b/tests/ci_tests/test_training_autopilot.py @@ -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)) @@ -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))