swh:1:snp:eb70f1f85391e4b077c211bec36af0061c4bf937
Raw File
Tip revision: 49109d173f76c7a77e2000c323c70657226fb442 authored by Antoine R. Dumont (@ardumont) on 24 April 2020, 10:22:29 UTC
test_retry: Centralize time.sleep setup within a fixture
Tip revision: 49109d1
Makefile
# Depends: json-glib-tools

JSONVAL = json-glib-validate
JSONS = $(wildcard *.json)

all: validate
check: validate
test: validate

validate: validate-stamp
validate-stamp: $(JSONS)
	make $(patsubst %,validate/%,$?)
	touch $@

validate/%:
	$(JSONVAL) $*

clean:
	rm -f validate-stamp
back to top