Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Simon János
/
orchestrator
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
fcde0eb5
authored
Nov 11, 2016
by
Simon János
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated .gitignore and tox.ini; added pylint.conf
parent
f98d1c78
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
33 additions
and
4 deletions
+33
-4
.gitignore
+1
-0
pylint.conf
+14
-0
tox.ini
+18
-4
No files found.
.gitignore
View file @
fcde0eb5
...
...
@@ -3,3 +3,4 @@
*.egg-info
*.pyc
__pycache__
.cache
pylint.conf
0 → 100644
View file @
fcde0eb5
[
BASIC
]
persistent
=
no
[
MESSAGES
CONTROL
]
# C0111 Missing docstring
# R0903: Too few public methods (%s/%s)
disable
=
C0111
,
R0903
max
-
line
-
length
=
120
;
max
-
args
:
6
;
max
-
public
-
methods
:
25
# Regular expression which should only match correct method names
method
-
rgx
= [
a
-
z_
][
a
-
z0
-
9
_
]{
1
,
50
}$
attr
-
rgx
= [
a
-
z_
][
a
-
z0
-
9
_
]{
1
,
50
}$
tox.ini
View file @
fcde0eb5
[tox]
envlist
=
py27
envlist
=
py27
, py34
[testenv]
deps
=
[dependencies]
production
=
enum34
voluptuous
; celery
test
=
pytest
pytest-pylint
flake8
; flower
[testenv]
deps
=
{
[dependencies]
production}
{
[dependencies]
test}
commands
=
flake8
orchestrator
py.test
-s
tests
py.test
-s
--pylint
--pylint-rcfile
=
pylint.conf
[flake8]
max-line-length
=
120
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment