docker: recipes-test: move tests to project root directory

The tests are first-class citizens; they should be present in the
directory as such.

Signed-off-by: Christopher Obbard <chris.obbard@collabora.com>
This commit is contained in:
Christopher Obbard
2020-08-13 17:50:49 +01:00
committed by Sjoerd Simons
parent 8b60bab5d2
commit 21fdbc283a
11 changed files with 11 additions and 11 deletions

View File

@@ -1,14 +1,14 @@
version: '3.4'
services:
sut:
build:
context: ..
dockerfile: docker/Dockerfile
target: runner
volumes:
- type: bind
source: ./tests
target: /recipes
working_dir: /recipes
entrypoint: ./tests.sh
sut:
build:
context: ..
dockerfile: docker/Dockerfile
target: runner
volumes:
- type: bind
source: ../tests
target: /recipes
working_dir: /recipes
entrypoint: ./tests.sh