13 lines
115 B
Makefile
13 lines
115 B
Makefile
|
|
|
|
all:
|
|
pytest .
|
|
|
|
cont:
|
|
pytest . --ff
|
|
|
|
tags:
|
|
ctags --python-kinds=-i -f .tags *.py */*.py
|
|
|
|
.PHONY: all cont tags
|