diff options
author | w0rp <devw0rp@gmail.com> | 2017-03-14 15:08:26 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-03-14 15:08:26 +0000 |
commit | 5836d9a9a732f34929b8c78150e9e3ed41bb7318 (patch) | |
tree | 234409637c0b01aabac9cdd089ba3622d709f724 /Makefile | |
parent | 6f0fc965ab648104547dcbb5e120abfe09d6b0e8 (diff) | |
download | ale-5836d9a9a732f34929b8c78150e9e3ed41bb7318.zip |
Stop using globstar for tests, so they can be run on Mac OSX
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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) |