https://github.com/bear/python-twitter
Raw File
Tip revision: a011675e32fd9038f2d91b711e9ca57897219e26 authored by Yuda Sukmana on 16 June 2016, 06:10:04 UTC
Passing None media_type
Tip revision: a011675
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"

tox:
	export PYENV_VERSION="2.7.11:3.5.1:pypy-5.0.0" && tox

env:
	pip install -r requirements.txt

dev: env
	pip install -r 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:
	python setup.py test

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

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