Stop using globstar for tests, so they can be run on Mac OSX
This commit is contained in:
parent
6f0fc965ab
commit
5836d9a9a7
1 changed files with 1 additions and 2 deletions
3
Makefile
3
Makefile
|
@ -2,10 +2,9 @@ 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/*.vader test/*/*.vader test/*/*/*.vader test/*/*/*/*.vader
|
||||
|
||||
test-setup:
|
||||
shopt -s globstar; \
|
||||
docker images -q w0rp/ale | grep ^$(CURRENT_IMAGE_ID) > /dev/null || \
|
||||
docker pull $(IMAGE)
|
||||
|
||||
|
|
Reference in a new issue