1
0
mirror of https://github.com/gsi-upm/senpy synced 2024-11-24 17:12:29 +00:00

Fixed makefile error

Tests were run in the image of the latest senpy, but it did not mount
the current code.
This commit is contained in:
J. Fernando Sánchez 2017-07-12 17:50:09 +02:00
parent 4d7e8e7589
commit 9bea267f52

View File

@ -71,7 +71,7 @@ dev: dev-$(PYMAIN)
test-all: $(addprefix test-,$(PYVERSIONS)) test-all: $(addprefix test-,$(PYVERSIONS))
test-%: test-%:
docker run --rm --entrypoint /usr/local/bin/python -w /usr/src/app $(IMAGENAME):python$* setup.py test docker run --rm --entrypoint /usr/local/bin/python -v $(PWD):/usr/src/app -w /usr/src/app $(IMAGENAME):python$* setup.py test
test: test-$(PYMAIN) test: test-$(PYMAIN)