Skip to content

Commit ec91d5c

Browse files
committed
Fix pycodestyle / pylint
1 parent 1f4757a commit ec91d5c

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ env:
99
- TEST_SUITE=tests_integ
1010
install:
1111
- unset PYTHONWARNINGS
12-
- sudo apt-get install rpm
12+
- sudo apt-get install -y rpm
1313
- sudo pip install virtualenv virtualenv-tools
1414
- sudo pip install --upgrade distribute
1515
- ./tests/setup_test.sh

package.sh

+11-11
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,19 @@
33
# --------------------------------------------------------------------------------
44
# This script is building packages for Alignak thanks to the fpm
55
# application (https://github.com/jordansissel/fpm).
6-
# Installing fpm:
7-
# sudo apt-get install ruby ruby-dev rubygems build-essential
6+
# -----
7+
# Using this script and fpm requires:
8+
# sudo apt-get install ruby ruby-dev rubygems build-essential
89
# sudo gem install --no-ri --no-rdoc fpm
910
# -----
10-
# This script updates the .bintray.json file to update:
11+
# This script updates the .bintray-*.json file to update:
1112
# - the target repo, replacing sed_version_repo with the appropriate
1213
# repository name: alignak-deb-testing or alignak-deb-stable
1314
# - the version name, description and release date, replacing
1415
# sed_version_name, sed_version_desc and sed_version_released
1516
# -----
16-
# Using this script and fpm requires:
17-
# sudo apt-get install ruby ruby-dev rubygems build-essential
18-
# -----
1917
# Command line parameters:
20-
# git branch name:
18+
# - git branch name:
2119
# - master will build a stable version (alignak_deb-stable repository)
2220
# -> python-alignak_x.x.x_all.deb
2321
# - develop will build a develop version (alignak_deb-testing repository)
@@ -28,10 +26,12 @@
2826
# Note that it is not recommended to use anything else than alphabetic characters in the
2927
# branch name according to the debian version name policy! Else, the package will not even
3028
# install on the system!
31-
# python version:
32-
# - 2.7, 3.5 (default)
33-
# package type:
34-
# - deb (default), rpm, freebsd, apk, pacman, ...
29+
#
30+
# - python version:
31+
# 2.7, 3.5 (default)
32+
#
33+
# - package type:
34+
# deb (default), rpm, freebsd, apk, pacman, ...
3535
# Indeed all the package types supported by fpm
3636
# --------------------------------------------------------------------------------
3737
#set -ev

0 commit comments

Comments
 (0)