Update make test target to work with new unit tests

This commit is contained in:
Marian Steinbach 2018-10-02 22:48:25 +02:00
parent fd9584aac3
commit 021a2b6d20

View file

@ -39,4 +39,8 @@ export: dockerimage
# run spider tests
# FIXME
test: dockerimage
docker run --rm -ti quay.io/netzbegruenung/green-spider:latest /spider_test.py
docker run --rm -ti \
--entrypoint "python3" \
$(IMAGE) \
-m unittest discover -p '*_test.py'