blob: dafd2be9dbd31bc3c2c2cdb71420f99839569445 [file] [log] [blame]
# -*- makefile -*-
# -----------------------------------------------------------------------
# -----------------------------------------------------------------------
null :=#
space :=$(null) $(null)
PYTHON ?= /usr/bin/env python
## -----------------------------------------------------------------------
## -----------------------------------------------------------------------
all: try
## -----------------------------------------------------------------------
## -----------------------------------------------------------------------
test-args += -m unittest
check test:
$(PYTHON) $(test-args) discover -v
## -----------------------------------------------------------------------
## -----------------------------------------------------------------------
help:
@echo "USAGE: $(MAKE)"
@echo " all"
@echo " test Invoke available unit tests (find . -name 'test_*.py')"
# [EOF]