summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@gmail.com>2023-04-20 12:18:25 -0400
committerKent Overstreet <kent.overstreet@gmail.com>2023-04-20 12:18:59 -0400
commit700afe193945e7c55bee0d6c16089f33d3c45f03 (patch)
tree4cf0fb9615404c9bec41f942e70e2bfdb4e016d1 /Makefile
parent9690f783569ebeb166dfc1745c0ba0f48db523d0 (diff)
Delete pytest
These tests have never been useful; drop them. Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 0 insertions, 16 deletions
diff --git a/Makefile b/Makefile
index 8a85e01c..0793f2a2 100644
--- a/Makefile
+++ b/Makefile
@@ -34,14 +34,6 @@ CFLAGS+=-std=gnu11 -O2 -g -MMD -Wall -fPIC \
$(EXTRA_CFLAGS)
LDFLAGS+=$(CFLAGS) $(EXTRA_LDFLAGS)
-## Configure Tools
-PYTEST_ARGS?=
-PYTEST_CMD?=$(shell \
- command -v pytest-3 \
- || which pytest-3 2>/dev/null \
-)
-PYTEST:=$(PYTEST_CMD) $(PYTEST_ARGS)
-
CARGO_ARGS=
CARGO=cargo $(CARGO_ARGS)
CARGO_PROFILE=release
@@ -99,14 +91,6 @@ debug: bcachefs
.PHONY: tests
tests: tests/test_helper
-.PHONY: check
-check: tests bcachefs
-ifneq (,$(PYTEST_CMD))
- $(PYTEST)
-else
- @echo "WARNING: pytest not found or specified, tests could not be run."
-endif
-
.PHONY: TAGS tags
TAGS:
ctags -e -R .