Created
May 17, 2017 14:55
-
-
Save perrygeo/d04ba390ce23b72e2b5f9380a4f28b75 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
all: deps clean install test | |
.PHONY: docs | |
install: | |
python setup.py build_ext | |
pip install -e .[all] | |
deps: | |
pip install -r requirements-dev.txt | |
clean: | |
pip uninstall -y rasterio || echo "no need to uninstall" | |
python setup.py clean --all | |
find . -name '__pycache__' -delete -print -o -name '*.pyc' -delete -print | |
touch rasterio/*.pyx | |
test: | |
py.test --maxfail 1 -v --cov rasterio --cov-report html --pdb tests | |
docs: | |
cd docs && make apidocs && make html | |
doctest: | |
py.test --doctest-modules rasterio --doctest-glob='*.rst' docs/*.rst |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment