Skip to content

Commit

Permalink
Fix buildspec yaml file for TF integration tests (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
ndodda-amazon committed Sep 3, 2020
1 parent bd5e60b commit ed56c1d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ phases:
# build pip wheel of the latest smdebug
- cd $CODEBUILD_SRC_DIR && python setup.py bdist_wheel --universal && pip install --force-reinstall dist/*.whl
# Runs the smprofiler sagemaker integration tests
- cd $CODEBUILD_SRC_DIR && python -m pytest -v -s -W=ignore --html=$REPORT_DIR/profiler_report_analysis.html --self-contained-html tests/sagemaker/
- cd $CODEBUILD_SRC_DIR && python -m pytest -v -s -W=ignore --html=$REPORT_DIR/profiler_report_analysis.html --self-contained-html tests/sagemaker/test_profiler_tensorflow.py

post_build:
commands:
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def _download_artifacts(s3_path, out_dir):


def _get_estimator_list(index, job_type):
fhandle = open("tests/sagemaker/profiler_tests_config.yaml")
fhandle = open("tests/sagemaker/tensorflow_profiler_tests_config.yaml")
config_file = yaml.load(fhandle, Loader=yaml.FullLoader)
fhandle.close()
estimator_list = []
Expand Down

0 comments on commit ed56c1d

Please sign in to comment.