xfstestsdb/Makefile
Anna Schumaker c210eff9b9 xfstestsdb: Create the root xfstestsdb Command
Signed-off-by: Anna Schumaker <anna@nowheycreamery.com>
2023-02-13 12:01:46 -05:00

16 lines
197 B
Makefile

# Copyright 2023 (c) Anna Schumaker.
clean:
find . -type d -name __pycache__ -exec rm -r {} \+
.PHONY: flake8
flake8:
flake8
.PHONY: pytest
pytest:
pytest
.PHONY: tests
tests: pytest flake8