Fix flake8 command in development flow

- Missing setup.py, and wrong path for tests
- Removed extra new lines that was causing a warning
This commit is contained in:
Samuel Dion-Girardeau 2016-08-22 20:14:25 -04:00
parent ae9bebb365
commit 9177f0fab0
2 changed files with 1 additions and 2 deletions

View file

@ -98,7 +98,7 @@ Here's how to set up `snappass` for local development.
6. When you're done making changes, check that your changes pass the tests and 6. When you're done making changes, check that your changes pass the tests and
flake8:: flake8::
$ flake8 snappass tests $ flake8 snappass tests.py setup.py
$ tox $ tox
7. Commit your changes and push your branch to GitHub:: 7. Commit your changes and push your branch to GitHub::

View file

@ -36,4 +36,3 @@ setup(
], ],
zip_safe=False, zip_safe=False,
) )