diff options
author | 2017-04-11 15:26:30 +0800 | |
---|---|---|
committer | 2017-04-11 16:18:54 +0800 | |
commit | 060c40ea87ac4a3c20db7c1b6df25befd0014918 (patch) | |
tree | 66cdeecdd746a36066dae7d3b9b78a7490c87b2b /jjb | |
parent | f5c14a8c277dfd487f080e6dfaedc37bf10b34d8 (diff) |
Add flake8 examination to Bottlenecks
JIRA: RELENG-211
Add flake8 examination to CI pipeline for Bottlenecks.
Change-Id: I14d8bd4fe288d1dedb7c23dd158fc8c3765bf309
Signed-off-by: yuyang <Gabriel.yuyang@huawei.com>
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/bottlenecks/bottlenecks-project-jobs.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/jjb/bottlenecks/bottlenecks-project-jobs.yml b/jjb/bottlenecks/bottlenecks-project-jobs.yml index a0abb9331..5dced2aad 100644 --- a/jjb/bottlenecks/bottlenecks-project-jobs.yml +++ b/jjb/bottlenecks/bottlenecks-project-jobs.yml @@ -70,8 +70,8 @@ - branch-compare-type: 'ANT' branch-pattern: '**/{branch}' builders: - - bottlenecks-hello - #- bottlenecks-unit-tests + #- bottlenecks-hello + - bottlenecks-unit-tests - job-template: name: 'bottlenecks-merge-{stream}' @@ -206,10 +206,10 @@ # install python packages easy_install -U setuptools easy_install -U pip - pip install -r requirements.txt + pip install -r $WORKSPACE/requirements/verify.txt # unit tests - /bin/bash $WORKSPACE/tests.sh + /bin/bash $WORKSPACE/verify.sh deactivate @@ -220,4 +220,4 @@ #!/bin/bash set -o errexit - echo "hello" + echo -e "Wellcome to Bottlenecks! \nMerge event is planning to support more functions! " |