s3-lsa: Fix static list of luids in our privileges implementation.
[Samba/ekacnet.git] / lib / testtools / Makefile
blob5e232e339469ca94f7d8b0f297efa0044e2fefa9
1 # See README for copyright and licensing details.
3 PYTHON=python
4 SOURCES=$(shell find testtools -name "*.py")
6 check:
7 PYTHONPATH=$(PWD) $(PYTHON) -m testtools.run testtools.tests.test_suite
9 TAGS: ${SOURCES}
10 ctags -e -R testtools/
12 tags: ${SOURCES}
13 ctags -R testtools/
15 clean:
16 rm -f TAGS tags
17 find testtools -name "*.pyc" -exec rm '{}' \;
19 release:
20 ./setup.py sdist upload --sign
22 apidocs:
23 pydoctor --make-html --add-package testtools \
24 --docformat=restructuredtext --project-name=testtools \
25 --project-url=https://launchpad.net/testtools
28 .PHONY: check clean release apidocs