Skip to content

Commit 772903f

Browse files
authored
Merge pull request #42 from Workable/bug/41_fix_flake8_issue
Fix flake8 issues
2 parents 3aaea86 + 7575de8 commit 772903f

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.circleci/config.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ jobs:
4545
name: Unit-Tests
4646
command: |
4747
. venv/bin/activate
48-
pip install
4948
${PYTHON_BIN} setup.py nosetests
5049
5150
test-3.5:

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
**Flask-Log-Request-Id** is an extension for `Flask`_ that can parse and handle
88
the request-id sent by request processors like `Amazon ELB`_, `Heroku Request-ID`_
99
or any multi-tier infrastructure as the one used at microservices. A common
10-
usage scenario is to inject the request\_id in the logging system so that all
10+
usage scenario is to inject the request\\_id in the logging system so that all
1111
log records, even those emitted by third party libraries, have attached the
12-
request\_id that initiated their call. This can greatly improve tracing and debugging of problems.
12+
request\\_id that initiated their call. This can greatly improve tracing and debugging of problems.
1313
1414
1515
Features
@@ -95,9 +95,10 @@ def index():
9595

9696
test_requirements = [
9797
'nose',
98+
'flake8',
9899
'mock==2.0.0',
99-
'coverage~=4.3.4',
100-
'celery~=4.1.0'
100+
'coverage~=4.5.4',
101+
'celery~=4.3.0'
101102
]
102103

103104
setup(
@@ -128,8 +129,7 @@ def index():
128129
"nose"
129130
],
130131
extras_require={
131-
'test': test_requirements,
132-
'celery': ["celery~=4.1.0"],
132+
'test': test_requirements
133133
},
134134
test_suite='nose.collector',
135135
classifiers=[

0 commit comments

Comments
 (0)