Revision 83bc08a21a9d76929a3bcd5cc239c3da9cb9b19f authored by Mike Taylor on 24 November 2016, 18:49:58 UTC, committed by GitHub on 24 November 2016, 18:49:58 UTC
2 parent s dc13a39 + 13dd590
Raw File
Makefile

help:
	@echo "  env         install all production dependencies"
	@echo "  dev         install all dev and production dependencies (virtualenv is assumed)"
	@echo "  docs        build documentation"
	@echo "  clean       remove unwanted stuff"
	@echo "  lint        check style with flake8"
	@echo "  test        run tests"
	@echo "  coverage    run tests with code coverage"

env:
	pip install -Ur requirements.txt

dev: env
	pyenv install -s 2.7.11
	pyenv install -s 3.5.1
	pyenv install -s pypy-5.3.1
	pyenv install -s pypy3-2.4.0
	pyenv local 2.7.11 3.5.1 pypy-5.3.1 pypy3-2.4.0
	pip install -Ur requirements.testing.txt

info:
	@python --version
	@pyenv --version
	@pip --version

clean:
	rm -fr build
	rm -fr dist
	find . -name '*.pyc' -exec rm -f {} \;
	find . -name '*.pyo' -exec rm -f {} \;
	find . -name '*~' ! -name '*.un~' -exec rm -f {} \;

docs:
	$(MAKE) -C doc html

lint:
	flake8 twitter > violations.flake8.txt

test: lint
	python setup.py test

tox: clean
	tox

coverage: clean
	coverage run --source=twitter setup.py test --addopts "--ignore=venv"
	coverage html
	coverage report

ci:
	pyenv install -s 2.7.11
	pyenv install -s 3.5.1
	pyenv install -s pypy-5.3.1
	pyenv install -s pypy3-2.4.0
	pyenv local 2.7.11 3.5.1 pypy-5.3.1 pypy3-2.4.0
	pip install -Ur requirements.testing.txt
	tox
	CODECOV_TOKEN=`cat .codecov-token` codecov

build: clean
	python setup.py check
	python setup.py sdist
	python setup.py bdist_wheel

upload: clean
	python setup.py sdist upload
	python setup.py bdist_wheel upload
back to top