forked from tensorflow/agents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tests_release.sh
executable file
·76 lines (60 loc) · 1.9 KB
/
tests_release.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#!/bin/bash
# Test nightly release: ./test_release.sh nightly
# Test stable release: ./test_release.sh stable
# 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_release [nightly|stable]"
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 == "nightly" ]] ; then
pip install tf-nightly==1.13.0.dev20190228
# Run the tests
python setup.py test
# Install tf_agents package.
WHEEL_PATH=${TMP}/wheel/$1
./pip_pkg.sh ${WHEEL_PATH}/
elif [[ $2 == "stable" ]] ; then
pip install tensorflow
# Run the tests
python setup.py test --release
# Install tf_agents package.
WHEEL_PATH=${TMP}/wheel/$1
./pip_pkg.sh ${WHEEL_PATH}/ --release
else
echo "Error unknow option only [nightly|stable]"
exit
fi
pip install ${WHEEL_PATH}/tf_agents_*.whl
# 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
}
if ! which cmake > /dev/null; then
echo -e "cmake not found! needed for atari_py tests. Install? (y/n) \c"
read
if "$REPLY" = "y"; then
sudo apt-get install -y cmake zlib1g-dev
fi
fi
# Test on Python2.7
run_tests "python2.7" $1
# Test on Python3.6
run_tests "python3.6" $1