代码拉取完成,页面将自动刷新
#!/bin/bash
# Install pypi from test: ./test_nightly_pypi.sh test
# Install pypi from pypi: ./test_nightly_pypi.sh official
# Exit if any process returns non-zero status.
set -e
# Display the commands being run in logs, which are replicated to sponge.
set -x
if [[ $# -lt 1 ]] ; then
echo "Usage:"
echo "test_nightly_pypi [test|official]"
exit 1
fi
run_tests() {
echo "run_tests $1 $2"
TMP=$(mktemp -d)
# Create and activate a virtualenv to specify python version and test in
# isolated environment. Note that we don't actually have to cd'ed into a
# virtualenv directory to use it; we just need to source bin/activate into the
# current shell.
VENV_PATH=${TMP}/virtualenv/$1
virtualenv -p "$1" "${VENV_PATH}"
source ${VENV_PATH}/bin/activate
# TensorFlow isn't a regular dependency because there are many different pip
# packages a user might have installed.
if [[ $2 == "test" ]] ; then
pip install tf-nightly==1.15.0.dev20190821
# Install pypi package from test.pypi
pip install --index-url https://test.pypi.org/simple/ tf-agents-nightly
elif [[ $2 == "official" ]] ; then
pip install tf-nightly==1.15.0.dev20190821
# Install pypi package
pip install tf-agents-nightly
else
echo "Error unknown option only [test|official]"
exit
fi
# Move away from repo directory so "import tf_agents" refers to the
# installed wheel and not to the local fs.
(cd $(mktemp -d) && python -c 'import tf_agents')
# Deactivate virtualenv
deactivate
}
# Test on Python3.6
run_tests "python3.6" $1
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。