blob: dafd2be9dbd31bc3c2c2cdb71420f99839569445 [file] [log] [blame]
Joey Armstrong44fa7d82022-11-01 17:46:04 -04001# -*- makefile -*-
2# -----------------------------------------------------------------------
3# -----------------------------------------------------------------------
4
5null :=#
6space :=$(null) $(null)
7
8PYTHON ?= /usr/bin/env python
9
10## -----------------------------------------------------------------------
11## -----------------------------------------------------------------------
12all: try
13
14## -----------------------------------------------------------------------
15## -----------------------------------------------------------------------
16test-args += -m unittest
17check test:
18 $(PYTHON) $(test-args) discover -v
19
20## -----------------------------------------------------------------------
21## -----------------------------------------------------------------------
22help:
23 @echo "USAGE: $(MAKE)"
24 @echo " all"
25 @echo " test Invoke available unit tests (find . -name 'test_*.py')"
26
27# [EOF]