diff options
| -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 | 
