changes in pylint
This commit is contained in:
parent
59940e33c2
commit
96b2680378
15
Jenkinsfile
vendored
15
Jenkinsfile
vendored
|
@ -148,10 +148,17 @@ pipeline {
|
||||||
python -m coverage xml -o PyBitmessage/coverage.xml
|
python -m coverage xml -o PyBitmessage/coverage.xml
|
||||||
'''
|
'''
|
||||||
|
|
||||||
// echo "Style check"
|
echo "Style check"
|
||||||
// sh ''' source activate ${BUILD_TAG}
|
sh ''' echo ${SHELL}
|
||||||
// pylint PyBitmessage || true
|
[ -d venv ] && rm -rf venv
|
||||||
// '''
|
#virtualenv --python=python2.7 venv
|
||||||
|
virtualenv venv
|
||||||
|
#. venv/bin/activate
|
||||||
|
export PATH=${VIRTUAL_ENV}/bin:${PATH}
|
||||||
|
python setup.py install
|
||||||
|
pip install pylint
|
||||||
|
pylint PyBitmessage || true
|
||||||
|
'''
|
||||||
}
|
}
|
||||||
post{
|
post{
|
||||||
always{
|
always{
|
||||||
|
|
Loading…
Reference in New Issue
Block a user