aa08f38a80
At the moment our tests requires to be run inside a clean dbus/xvfb session, which is not always available where the check target is used (for example in distcheck). Also when running distcheck in buildbot we don't really want to run tests again, since we just run them in the check step. We might revisit this in the future but using a non standard target is the easiest solution for now.
20 lines
387 B
Makefile
20 lines
387 B
Makefile
ACLOCAL_AMFLAGS = -I m4
|
|
DISTCHECK_CONFIGURE_FLAGS = --enable-introspection
|
|
|
|
DISTCLEANFILES = \
|
|
intltool-extract \
|
|
intltool-merge \
|
|
intltool-update
|
|
|
|
EXTRA_DIST = \
|
|
intltool-merge.in \
|
|
intltool-update.in \
|
|
intltool-extract.in
|
|
|
|
SUBDIRS = bin src po
|
|
|
|
test:
|
|
pyflakes $(top_srcdir)
|
|
pep8 $(top_srcdir)
|
|
python -m sugar3.test.discover $(top_srcdir)/tests
|