-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.custom-test.yml
More file actions
38 lines (32 loc) · 1.05 KB
/
Copy pathdocker-compose.custom-test.yml
File metadata and controls
38 lines (32 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
services:
proxy:
container_name: evokstest_proxy
restart: "no"
postgres:
container_name: evokstest_postgres
restart: "no"
web:
container_name: evokstest_testrunner
entrypoint: >
sh -c "set -e &&
export BASEHREF &&
envsubst '$$BASEHREF' < /code/skosmos-dev/config-template.ttl > /code/skosmos-dev/config.ttl &&
envsubst '$$BASEHREF' < /code/skosmos-live/config-template.ttl > /code/skosmos-live/config.ttl &&
cd ./evoks &&
python manage.py migrate &&
coverage run manage.py test -v 3 tests/model/ tests/migration/ tests/skosmos/ tests/fuseki/ tests/views/ tests/evoks &&
coverage report &&
coverage xml"
restart: "no"
fuseki-dev:
container_name: evokstest_fuseki-dev
restart: "no"
fuseki-live:
container_name: evokstest_fuseki-live
restart: "no"
skosmos-dev:
container_name: evokstest_skosmos-dev
restart: "no"
skosmos-live:
container_name: evokstest_skosmos-live
restart: "no"