diff options
author | Yaron Yogev <yaronyogev@gmail.com> | 2018-01-23 15:26:21 +0200 |
---|---|---|
committer | agardner <agardner@linuxfoundation.org> | 2018-01-24 12:51:25 -0500 |
commit | c6c19c9d08794f947bd4b48b85a4ff9f18d56634 (patch) | |
tree | cef7c7fed4fc81d4cce1fa46982740067ee5c728 /app/test/verify.sh | |
parent | 98c3ac7c859e34fe60d061b9ca591aba429e4118 (diff) |
revert some docs changes from last commit by Koren
table fixes by Aric Gardner in docs/release/admin-guide.rst
were accidentaly destroyed
files were accidentaly removed: docs/index.rst, docs/release/index.rst
Change-Id: I9f826f524efd3e1af596055f0f16433551a918eb
Signed-off-by: Yaron Yogev <yaronyogev@gmail.com>
Diffstat (limited to 'app/test/verify.sh')
-rwxr-xr-x | app/test/verify.sh | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/app/test/verify.sh b/app/test/verify.sh index 681b5ed..684195e 100755 --- a/app/test/verify.sh +++ b/app/test/verify.sh @@ -8,9 +8,16 @@ # which accompanies this distribution, and is available at # # http://www.apache.org/licenses/LICENSE-2.0 # ############################################################################### -set -o errexit -set -o nounset -set -o pipefail +#set -o errexit +#set -o nounset +#set -o pipefail + +#sudo yum install -y https://centos7.iuscommunity.org/ius-release.rpm +#sudo yum -y install python35 +#sudo pip install virtualenv +#virtualenv -p $(which python3.5) $WORKSPACE/venv +#. $WORKSPACE/venv/bin/activate + PYTHONPATH=$PWD/app python3 -m unittest discover -s app/test/api PYTHONPATH=$PWD/app python3 -m unittest discover -s app/test/event_based_scan PYTHONPATH=$PWD/app python3 -m unittest discover -s app/test/fetch |