diff options
author | mei mei <meimei@huawei.com> | 2016-05-27 02:20:24 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-05-27 02:20:24 +0000 |
commit | 99c671bfcb8d936bbfea950645b22273b22d325f (patch) | |
tree | d009f464608105512c12b5706cf05108f4de10fd | |
parent | 6668fa4f4c1b660dc130775b3a3d8c38d6646e8d (diff) | |
parent | e54906847d2772aebcc82c5de4bc16720ce45cba (diff) |
Merge "Fix "Illegal option -o pipefail" problem and correct the parser path."
-rw-r--r-- | jjb/parser/parser.yml | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/jjb/parser/parser.yml b/jjb/parser/parser.yml index 2ab1af833..01f51aa68 100644 --- a/jjb/parser/parser.yml +++ b/jjb/parser/parser.yml @@ -58,15 +58,13 @@ builders: - shell: | - #/bin/bash + #!/bin/bash set -o errexit set -o pipefail set -o xtrace export PATH=$PATH:/usr/local/bin/ - + # pep8 check parser/tosca2heat/tosca-parser echo "Running tox -e pep8 on tosca2heat ..." - cd $WORKSPACE/parser/tosca2heat/tosca-parser - tox -e pep8 - cd $WORKSPACE/parser/tosca2heat/heat-translator - tox -e pep8 + cd $WORKSPACE/tosca2heat/tosca-parser && tox -e pep8 + cd $WORKSPACE/tosca2heat/heat-translator && tox -e pep8 |