diff options
| author | Sean Brant | 2013-03-10 12:51:29 -0500 | 
|---|---|---|
| committer | Sean Brant | 2013-03-10 12:51:29 -0500 | 
| commit | a9cf56e499cee55a800feb4120b961f5441c0bb4 (patch) | |
| tree | f7d83b7e1775fea74f6a48d65c16fd1df9545641 | |
| parent | 82818498dcbad515882fa8054be219384f332e17 (diff) | |
| download | pykss-a9cf56e499cee55a800feb4120b961f5441c0bb4.tar.bz2 | |
doh. make sure you name the travis file correctly. Also moves install step to make file
| -rw-r--r-- | .travis.yml (renamed from travis.yml) | 2 | ||||
| -rw-r--r-- | Makefile | 4 | 
2 files changed, 5 insertions, 1 deletions
| @@ -4,6 +4,6 @@ python:    - "2.7"    - "pypy"  install: -  - pip install -e . +  - make develop  script:    - make test @@ -1,3 +1,7 @@ +develop: +	pip install "file://`pwd`#egg=sentry[tests]" +	pip install -e . --use-mirrors +  lint:  	@echo "Linting Python files"  	flake8 --ignore=E501,E225,E121,E123,E124,E125,E127,E128 pykss | 
