Skip to content

Commit

Permalink
Add pyflakes to dependencies and update make test to use setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dcramer committed May 17, 2012
1 parent a371515 commit c6a3d14
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -45,7 +45,7 @@ watch:
test:
pep8 --exclude=migrations --ignore=E501,E225 sentry || exit 1
pyflakes -x W sentry || exit 1
coverage run runtests.py --include=sentry/* && \
coverage run --include=sentry/* setup.py test && \
coverage html --omit=*/migrations/* -d cover

.PHONY: build watch
6 changes: 6 additions & 0 deletions setup.py
Expand Up @@ -39,6 +39,7 @@
'nose==1.1.2',
'nydus==0.8.2',
'mock==0.8.0',
'pyflakes',
'pep8',
'redis',
]
Expand All @@ -63,6 +64,10 @@
'South>=0.7',
]

dependency_links = [
'https://github.com/dcramer/pyflakes/tarball/master#egg=pyflakes',
]

setup(
name='sentry',
version='4.3.3',
Expand All @@ -76,6 +81,7 @@
install_requires=install_requires,
tests_require=tests_require,
extras_require={'test': tests_require},
dependency_links=dependency_links,
test_suite='runtests.runtests',
license='BSD',
include_package_data=True,
Expand Down

0 comments on commit c6a3d14

Please sign in to comment.