Merge "Fix line wrapping"

This commit is contained in:
Jenkins 2016-11-11 13:08:07 +00:00 committed by Gerrit Code Review
commit 0c50d5fa2b
5 changed files with 19 additions and 18 deletions

View File

@ -53,7 +53,7 @@ Follow these additional guidelines on creating and formating your own tests:
.. code-block:: console
./utils/jenkins/system_tests.sh -t test -w\
./utils/jenkins/system_tests.sh -t test -w \
$(pwd) -j fuelweb_test -i $ISO_PATH -o --group=setup
#. For additional information, type:

View File

@ -43,7 +43,7 @@ and deploying new changes.
set -e
set -o pipefail
find . -name '*.pp' | xargs -P1 -L1 puppet parser\
find . -name '*.pp' | xargs -P1 -L1 puppet parser \
validate --verbose
find . -name '*.pp' | xargs -P1 -L1 puppet-lint \
--fail-on-warnings \
@ -55,9 +55,9 @@ and deploying new changes.
--no-autoloader_layout-check \
--no-class_inherits_from_params_class-check \
--no-documentation-check \
--no-arrow_alignment-check\
--no-arrow_alignment-check \
--no-case_without_default-check
find . -name '*.erb' | xargs -P1 -L1 -I '%'\
find . -name '*.erb' | xargs -P1 -L1 -I '%' \
erb -P -x -T '-' % | ruby -c
fpb --check ./

View File

@ -19,12 +19,13 @@ for plugins.
${BUILD_NUMBER}
export VENV_PATH='/home/jenkins/\
venv-nailgun-tests-2.9'
YOUR_PLUGIN_PATH="$(ls ./*rpm)"\#Change\
this to appropriate fuel-qa variable for your plugin
export YOUR_PLUGIN_PATH#
# Change this to appropriate fuel-qa
# variable for your plugin
YOUR_PLUGIN_PATH="$(ls ./*rpm)"
export YOUR_PLUGIN_PATH
sh -x "${SYSTEM_TESTS}" -w "${WORKSPACE}" -V\
"${VENV_PATH}" -i "${ISO_PATH}" -t test -o\
sh -x "${SYSTEM_TESTS}" -w "${WORKSPACE}" -V \
"${VENV_PATH}" -i "${ISO_PATH}" -t test -o \
--group="${TEST_GROUP}"
* prepare_env.sh:
@ -42,7 +43,7 @@ for plugins.
REQS_PATH="${WORKSPACE}/fuel-qa/\
fuelweb_test/requirements.txt"
virtualenv --system-site-packages\
virtualenv --system-site-packages \
"${VENV_PATH}"
source "${VENV_PATH}/bin/activate"
pip install -r "${REQS_PATH}" --upgrade
@ -59,11 +60,11 @@ for plugins.
#!/bin/bash
set -ex
find . -name '*.erb' -print 0 | xargs -0 -P1\
find . -name '*.erb' -print 0 | xargs -0 -P1 \
-I '%' erb -P -x -T '-' % | ruby -c
find . -name '*.pp' -print 0| xargs -0 -P1\
find . -name '*.pp' -print 0| xargs -0 -P1 \
puppet parser validate --verbose
find . -name '*.pp' -print 0| xargs -0 -P1\
find . -name '*.pp' -print 0| xargs -0 -P1 \
puppet-lint \
--fail-on-warnings \
--with-context \

View File

@ -17,8 +17,8 @@ The Fuel developers team recommends that you follow this CI workflow:
.. code-block:: console
$ fuel-main/utils/jenkins/system_tests -t test -j\
dis_fuelweb_test -i (path to downloaded Fuel-ISO)\
$ fuel-main/utils/jenkins/system_tests -t test -j \
dis_fuelweb_test -i (path to downloaded Fuel-ISO) \
-o --group=setup -V ${VIRTUAL_ENV} -k
* Create or restore the required empty VMs from snapshots.

View File

@ -14,7 +14,7 @@ You must use the Fuel Master node as the build environment.
.. code-block:: console
yum install -y git python-mako createrepo dpkg-devel dpkg-dev rpm\
yum install -y git python-mako createrepo dpkg-devel dpkg-dev rpm \
rpm-build
#. Clone the Fuel Plugin Builder repository: