Group handler test cases in a directory

This commit is contained in:
w0rp 2017-03-06 23:32:48 +00:00
parent 75a2dc5ff5
commit 663d8f832f
13 changed files with 2 additions and 1 deletions

View File

@ -2,9 +2,10 @@ SHELL := /usr/bin/env bash
IMAGE ?= w0rp/ale
CURRENT_IMAGE_ID = 107e4efc4267
DOCKER_FLAGS = --rm -v $(PWD):/testplugin -v $(PWD)/test:/home "$(IMAGE)"
tests = test/*
tests = test/**
test-setup:
shopt -s globstar; \
docker images -q w0rp/ale | grep ^$(CURRENT_IMAGE_ID) > /dev/null || \
docker pull $(IMAGE)