Skip to content

Commit

Permalink
add flake 8
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Faircloth committed Jun 30, 2019
1 parent 4e16448 commit f25895c
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
version: 2
version: 2
orbs:
flake8: arrai/flake8@5.0.0
jobs:
build:
environment:
Expand Down Expand Up @@ -139,7 +141,8 @@
- dgoss:
requires:
- build
- test
- test-unit
- flake8/flake8
- publish:
requires:
- dgoss
Expand Down
10 changes: 10 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions .idea/sc4s.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-r ./tests/requirements.txt

1 change: 1 addition & 0 deletions tests/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ pytest
jinja2
jinja2-time
http://dev.splunk.com/goto/sdk-python
flake8
2 changes: 1 addition & 1 deletion tests/test_poc.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def sendsingle(message):
try:
sock.connect(server_address)
break
except:
except socket:
tried += 1
if tried > 90:
raise
Expand Down

0 comments on commit f25895c

Please sign in to comment.