Skip to content

Instantly share code, notes, and snippets.

@perrygeo
Created May 17, 2017 14:55
Show Gist options
  • Save perrygeo/d04ba390ce23b72e2b5f9380a4f28b75 to your computer and use it in GitHub Desktop.
Save perrygeo/d04ba390ce23b72e2b5f9380a4f28b75 to your computer and use it in GitHub Desktop.
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