blob: 9b1cd17efd07e93aa6273df37bfbaf9269f368bb [file] [log] [blame]
Armin Ronacherab45b842007-03-18 20:47:50 +01001#
2# Jinja Makefile
3# ~~~~~~~~~~~~~~
4#
5# Shortcuts for various tasks.
6#
7# :copyright: 2007 by Armin Ronacher.
8# :license: BSD, see LICENSE for more details.
9#
10
11test:
12 @(cd tests; py.test $(TESTS))
Armin Ronacher9baa5ba2007-03-21 18:05:32 +010013
Armin Ronacherccf284b2007-05-21 16:44:26 +020014test-coverage:
15 @(cd tests; py.test -C $(TESTS))
16
Armin Ronacher9baa5ba2007-03-21 18:05:32 +010017documentation:
18 @(cd docs; ./generate.py)
19
20webpage:
Armin Ronacherf626c8e2007-03-23 16:13:10 +010021 @(cd ../www; ./generate.py)
Armin Ronacher1223e092007-03-23 06:47:08 +010022
Armin Ronacherb475cff2007-05-28 23:15:43 +020023pylint:
24 @pylint --rcfile scripts/pylintrc jinja
25
Armin Ronacher72bb2572007-03-23 17:24:48 +010026release: documentation
27 @(python2.3 setup.py release bdist_egg upload; python2.4 setup.py release bdist_egg upload; python2.5 setup.py release bdist_egg sdist upload)