mirror of
https://github.com/GSA/notifications-api.git
synced 2026-02-03 18:01:08 -05:00
use flake8 instead of pycodestyle
since there are thousands and thousands of errors in the tests files at the moment, i propose fixing those errors in separate PR for now.
This commit is contained in:
@@ -100,7 +100,7 @@ Then simply run
|
|||||||
make test
|
make test
|
||||||
```
|
```
|
||||||
|
|
||||||
That will run pycodestyle for code analysis and our unit test suite. If you wish to run our functional tests, instructions can be found in the
|
That will run flake8 for code analysis and our unit test suite. If you wish to run our functional tests, instructions can be found in the
|
||||||
[notifications-functional-tests](https://github.com/alphagov/notifications-functional-tests) repository.
|
[notifications-functional-tests](https://github.com/alphagov/notifications-functional-tests) repository.
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
-r requirements.txt
|
-r requirements.txt
|
||||||
pycodestyle==2.3.1
|
flake8==3.5.0
|
||||||
pytest==3.2.5
|
pytest==3.2.5
|
||||||
pytest-mock==1.6.3
|
pytest-mock==1.6.3
|
||||||
pytest-cov==2.5.1
|
pytest-cov==2.5.1
|
||||||
@@ -9,4 +9,4 @@ freezegun==0.3.9
|
|||||||
requests-mock==1.3.0
|
requests-mock==1.3.0
|
||||||
# optional requirements for jsonschema
|
# optional requirements for jsonschema
|
||||||
strict-rfc3339==0.7
|
strict-rfc3339==0.7
|
||||||
rfc3987==1.3.7
|
rfc3987==1.3.7
|
||||||
|
|||||||
@@ -64,6 +64,7 @@ def delete_queue(queue_url):
|
|||||||
print('Deleted queue successfully {}'.format(response['ResponseMetadata']))
|
print('Deleted queue successfully {}'.format(response['ResponseMetadata']))
|
||||||
else:
|
else:
|
||||||
print('Error occured when attempting to delete queue')
|
print('Error occured when attempting to delete queue')
|
||||||
|
from pprint import pprint
|
||||||
pprint(response)
|
pprint(response)
|
||||||
return response
|
return response
|
||||||
|
|
||||||
|
|||||||
@@ -27,7 +27,8 @@ function display_result {
|
|||||||
if [[ -z "$VIRTUAL_ENV" ]] && [[ -d venv ]]; then
|
if [[ -z "$VIRTUAL_ENV" ]] && [[ -d venv ]]; then
|
||||||
source ./venv/bin/activate
|
source ./venv/bin/activate
|
||||||
fi
|
fi
|
||||||
pycodestyle .
|
echo -e "\033[31mWARNING. NOT RUNNING flake8 AGAINST TEST DIRECTORY DUE TO LARGE AMOUNT OF EXISTING ISSUES.\033[0m"
|
||||||
|
flake8 app/
|
||||||
display_result $? 1 "Code style check"
|
display_result $? 1 "Code style check"
|
||||||
|
|
||||||
# run with four concurrent threads
|
# run with four concurrent threads
|
||||||
|
|||||||
Reference in New Issue
Block a user