Skip to content

Commit

Permalink
Move the test command to a Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
dulacp committed Jan 23, 2015
1 parent b8c7972 commit c6d368f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ before_install:
- time pip install pep8

script:
- pep8 --ignore E201,E202 --max-line-length=120 --exclude='migrations' .
- make test

notifications:
email:
Expand Down
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# These targets are not files
.PHONY: contribute travis test lint coverage

test:
pep8 --ignore E201,E202 --max-line-length=120 --exclude='migrations' .

0 comments on commit c6d368f

Please sign in to comment.