xfstestsdb/Makefile

16 lines
197 B
Makefile
Raw Normal View History

# 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