1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

enable unit tests on CI

This commit is contained in:
Steffen Vogel 2018-01-30 17:53:56 +01:00
parent b202fa9e7d
commit 1bbe0c2855

View file

@ -12,7 +12,7 @@ before_script:
stages:
- prepare
- build
# - test
- test
# - deploy
# Stage: prepare
@ -59,16 +59,16 @@ build:source:
# Stage: test
##############################################################################
#test:unit:
# stage: test
# dependencies:
# - build:source
# script:
# - make test
# image: ${DOCKER_IMAGE_DEV}:${DOCKER_TAG_DEV}
# tags:
# - docker
# - fpga
test:unit:
stage: test
dependencies:
- build:source
script:
- tests/unit-tests --filter 'graph/*'
image: ${DOCKER_IMAGE_DEV}:${DOCKER_TAG_DEV}
tags:
- docker
- fpga
# Stage: deploy
##############################################################################