We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1c5529 commit d31bfc3Copy full SHA for d31bfc3
Makefile
@@ -4,6 +4,7 @@ SPHINX_BUILD = sphinx-build
4
ETAGS = etags
5
INCLUDE_DIR = /usr/include/
6
VERSION := $(shell $(PYTHON) setup.py --version)
7
+TESTFLAGS = -v
8
9
define buildscript
10
import sys,sysconfig
@@ -34,6 +35,9 @@ sphinx-%: build
34
35
PYTHONPATH=$(builddir) $(SPHINX_BUILD) -b $* $(SPHINXOPTS) docs build/docs
36
@echo Output has been generated in build/docs
37
38
+check: build
39
+ $(PYTHON) -m py.test $(builddir) docs $(TESTFLAGS)
40
+
41
TAGS: $(shell git ls-files systemd/*.[ch])
42
$(ETAGS) $+
43
0 commit comments