Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/buildspec_vanilla_framework_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ phases:
- sudo apt-get install unzip -qq -o=Dpkg::Use-Pty=0
- cd $CODEBUILD_SRC_DIR && chmod +x config/protoc_downloader.sh && ./config/protoc_downloader.sh
- pip install --upgrade pip==19.3.1
- pip install -q pytest pytest-cov wheel pyYaml pytest-html keras==2.3.1 mxnet torch xgboost pre-commit tensorflow_datasets torchvision
- pip install -q pytest pytest-cov wheel pyYaml pytest-html keras==2.3.1 mxnet torch xgboost pre-commit tensorflow_datasets==4.0.1 torchvision
- cd $CODEBUILD_SRC_DIR && chmod +x config/install_smdebug.sh && chmod +x config/check_smdebug_install.sh && ./config/install_smdebug.sh;

build:
Expand Down
2 changes: 1 addition & 1 deletion config/install_smdebug.sh
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ if [ "$run_pytest_mxnet" == 'enable' ]; then
fi
if [ "$run_pytest_tensorflow" == 'enable' ]; then
./config/check_smdebug_install.sh tensorflow
pip install tensorflow_datasets
pip install tensorflow_datasets==4.0.1
fi
if [ "$run_pytest_pytorch" == 'enable' ]; then
./config/check_smdebug_install.sh torch
Expand Down
2 changes: 1 addition & 1 deletion config/tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ if [ "$run_pytest_tensorflow" = "enable" ] ; then
fi

if [ "$run_pytest_tensorflow2" = "enable" ] ; then
pip install tensorflow_datasets
pip install tensorflow_datasets==4.0.1
run_for_framework tensorflow2
fi

Expand Down