From 610ee0e45a3fe54d2f88f61127dfa73a4bfbdba0 Mon Sep 17 00:00:00 2001 From: Rob Browning Date: Sat, 11 Sep 2021 11:52:30 -0500 Subject: [PATCH] GNUmakefile: run "bup features" during test Provide additional information about what's being tested, particularly in CI. Signed-off-by: Rob Browning --- GNUmakefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index f648dfb..2ed5b7c 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -210,11 +210,12 @@ lint: dev/bup-python ./pylint test: all test/tmp dev/python lint - if test yes = "$$(dev/python -c 'import xdist; print("yes")' 2>/dev/null)"; then \ + ./bup features + if test yes = "$$(dev/python -c 'import xdist; print("yes")' 2>/dev/null)"; then \ (set -x; ./pytest $(xdist_opt);) \ - else \ - (set -x; ./pytest;) \ - fi + else \ + (set -x; ./pytest;) \ + fi stupid: PATH=/bin:/usr/bin $(MAKE) test -- 2.39.2