This repository has been archived by the owner on Oct 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #57 from HairyFotr/patch-settings
Refactor settings
- Loading branch information
Showing
11 changed files
with
70 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
src/error_log | ||
error_log | ||
tests/.cache/* | ||
venv/* | ||
*.pyc | ||
*~ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,23 @@ | ||
pycodestyle | ||
pydocstyle | ||
|
||
pep8 | ||
pyflakes | ||
pep257 | ||
|
||
pyflakes | ||
bashate | ||
bandit | ||
|
||
flake8 | ||
mastool | ||
hacking | ||
flake8-commas | ||
flake8-coding | ||
flake8-debugger | ||
flake8-pep3101 | ||
flake8-string-format | ||
flake8-comprehensions | ||
flake8-tuple | ||
flake8-deprecated | ||
flake8-builtins | ||
flake8-mutable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
requests==2.10.0 | ||
Pillow==3.3.0 | ||
requests==2.11.1 | ||
Pillow==3.3.1 | ||
tweepy==3.5.0 | ||
gdata==2.0.18 | ||
pytest==2.9.2 | ||
pytest==3.0.1 | ||
mock==2.0.0 | ||
lxml==3.6.0 | ||
coverage==4.1 | ||
lxml==3.6.4 | ||
coverage==4.2 | ||
coveralls==1.1 | ||
Pafy==0.5.1 | ||
Pafy==0.5.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
#!/bin/sh | ||
export PYTHONPATH=src/:$PYTHONPATH | ||
. venv/bin/activate | ||
pip install -r requirements-analysis.txt -U | ||
pip install -r requirements-analysis.txt -U --pre | ||
|
||
pycodestyle --ignore=W503 src tests | ||
pep8 --ignore=W503 src tests | ||
|
||
pydocstyle --ignore=D100,D101,D102,D103,D104,D200,D205,D211,D400 src tests | ||
pep257 --ignore=D100,D101,D102,D103,D104,D200,D205,D211,D400 src tests | ||
|
||
pyflakes src tests | ||
flake8 --ignore=W503,H101,H301,H306,H404,H405,M005 src tests | ||
flake8 --ignore=W503,H101,H301,H306,H404,H405,M005,C101,C103 src tests | ||
bandit -r src | ||
bashate run run_daemon run_analysis run_tests setup_venv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters