This repository has been archived by the owner on Aug 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 955
/
Makefile
71 lines (56 loc) · 1.56 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
SUPPORTED_VERSIONS = 2.7.15 3.6.5 pypy-5.7.1 pypy3.5-6.0.0
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
pyenv:
for version in $(SUPPORTED_VERSIONS) ; do \
pyenv install -s $$version; \
done
pyenv local $(SUPPORTED_VERSIONS)
dev: pyenv env
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:
pycodestyle --config={toxinidir}/setup.cfg twitter tests
test: lint
pytest -s
#python setup.py test
tox: clean
tox
coverage: clean
coverage run --source=twitter setup.py test --addopts "--ignore=venv"
coverage html
coverage report
update-pyenv:
cd /opt/circleci/.pyenv/plugins/python-build/../.. && git pull && cd -
ci: update-pyenv pyenv dev tox
CODECOV_TOKEN=`cat .codecov-token` codecov
build: clean
python setup.py check
python setup.py sdist
python setup.py bdist_wheel
upload: clean
pyenv 2.7.15
python setup.py sdist upload
python setup.py bdist_wheel upload
pyenv 3.6.5
python setup.py bdist_wheel upload
pyenv local $(SUPPORTED_VERSIONS)