2014-08-24 00:54:58 +02:00
|
|
|
|
2014-11-09 00:04:17 +01:00
|
|
|
init:
|
|
|
|
|
pip install -r requirements.txt
|
|
|
|
|
|
|
|
|
|
docs:
|
2014-09-04 22:46:34 +02:00
|
|
|
make -C docs html
|
2014-11-09 00:04:17 +01:00
|
|
|
|
|
|
|
|
test:
|
|
|
|
|
py.test
|
|
|
|
|
|
|
|
|
|
coverage:
|
|
|
|
|
py.test --cov sigal --cov-report term --cov-report=html
|
|
|
|
|
|
2015-03-05 23:57:36 +01:00
|
|
|
demo:
|
|
|
|
|
sigal build -c tests/sample/sigal.conf.py && sigal serve tests/sample/_build
|
|
|
|
|
|
|
|
|
|
publish:
|
2014-11-09 00:04:17 +01:00
|
|
|
python setup.py register
|
2015-04-22 00:16:26 +02:00
|
|
|
python setup.py sdist bdist_wheel
|
|
|
|
|
twine upload dist/*
|
2014-11-09 00:04:17 +01:00
|
|
|
|
2015-03-05 23:57:36 +01:00
|
|
|
.PHONY: docs
|