Skip to content

Commit 033bd42

Browse files
committed
Skip integ tests for now
1 parent 485e944 commit 033bd42

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/integ/test_tuner.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,16 @@
1717
import pickle
1818
import sys
1919

20+
import pytest
21+
2022
from sagemaker.amazon.kmeans import KMeans
2123
from sagemaker.mxnet.estimator import MXNet
2224
from sagemaker.tuner import IntegerParameter, ContinuousParameter, CategoricalParameter, HyperparameterTuner
2325
from tests.integ import DATA_DIR
2426
from tests.integ.timeout import timeout
2527

2628

29+
@pytest.mark.skip(reason='functionality is not ready yet')
2730
def test_fit_1p(sagemaker_session):
2831
data_path = os.path.join(DATA_DIR, 'one_p_mnist', 'mnist.pkl.gz')
2932
pickle_args = {} if sys.version_info.major == 2 else {'encoding': 'latin1'}
@@ -65,6 +68,7 @@ def test_fit_1p(sagemaker_session):
6568
print('Started HPO job with name:' + tuner.latest_tuning_job.name)
6669

6770

71+
@pytest.mark.skip(reason='functionality is not ready yet')
6872
def test_mxnet_tuning(sagemaker_session, mxnet_full_version):
6973
with timeout(minutes=15):
7074
script_path = os.path.join(DATA_DIR, 'mxnet_mnist', 'tuning.py')

0 commit comments

Comments
 (0)