Skip to content

Commit e0727cb

Browse files
fix: use --file flag for docker compose consistency; fix semnantic typo in components.yaml
1 parent 4fab16a commit e0727cb

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

tools/tests/components.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ python-bindings:
3232
description: Tutorial git reference to use
3333
default: "master"
3434
PYTHON_BINDINGS_REF:
35-
semnantic: Git ref of the Python bindings to use
35+
description: Git ref of the Python bindings to use
3636
default: "master"
3737

3838
openfoam-adapter:
@@ -75,10 +75,10 @@ fenics-adapter:
7575
description: Tutorial git reference to use
7676
default: "master"
7777
PYTHON_BINDINGS_REF:
78-
semnantic: Git ref of the Python bindings to use
78+
description: Git ref of the Python bindings to use
7979
default: "master"
8080
FENICS_ADAPTER_REF:
81-
semnantic: Git ref of the fenics adapter to use
81+
description: Git ref of the fenics adapter to use
8282
default: "master"
8383

8484
nutils-adapter:
@@ -98,7 +98,7 @@ nutils-adapter:
9898
description: Tutorial git reference to use
9999
default: "master"
100100
PYTHON_BINDINGS_REF:
101-
semnantic: Git ref of the Python bindings to use
101+
description: Git ref of the Python bindings to use
102102
default: "master"
103103

104104
calculix-adapter:

tools/tests/systemtests/Systemtest.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ def _run_field_compare(self):
409409
try:
410410
# Execute docker-compose command
411411
cmd = _get_docker_compose_cmd() + [
412-
'-f', 'docker-compose.field_compare.yaml',
412+
'--file', 'docker-compose.field_compare.yaml',
413413
'up', '--exit-code-from', 'field-compare'
414414
]
415415
process = subprocess.Popen(cmd,
@@ -454,7 +454,7 @@ def _build_docker(self):
454454
try:
455455
# Execute docker-compose command
456456
cmd = _get_docker_compose_cmd() + [
457-
'-f', 'docker-compose.tutorial.yaml',
457+
'--file', 'docker-compose.tutorial.yaml',
458458
'build'
459459
]
460460
process = subprocess.Popen(cmd,
@@ -498,7 +498,7 @@ def _run_tutorial(self):
498498
try:
499499
# Execute docker-compose command
500500
cmd = _get_docker_compose_cmd() + [
501-
'-f', 'docker-compose.tutorial.yaml',
501+
'--file', 'docker-compose.tutorial.yaml',
502502
'up'
503503
]
504504
process = subprocess.Popen(cmd,

0 commit comments

Comments
 (0)