Skip to content

Commit 8d12ce8

Browse files
committed
misc: GHA does not like YAML >
1 parent 318871c commit 8d12ce8

2 files changed

Lines changed: 17 additions & 17 deletions

File tree

.github/workflows/pytest-core-mpi.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -123,11 +123,11 @@ jobs:
123123
env: |
124124
DEVITO_MPI=1
125125
OMP_NUM_THREADS=1
126-
command: >
127-
mpiexec -n 2
128-
pytest
129-
-v
130-
examples/seismic/acoustic
126+
command: |
127+
mpiexec -n 2 \
128+
pytest \
129+
-v \
130+
examples/seismic/acoustic \
131131
examples/seismic/tti
132132
133133
- name: Cleanup docker image

.github/workflows/pytest-gpu.yaml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -95,18 +95,18 @@ jobs:
9595
CODECOV_TOKEN=${{ secrets.CODECOV_TOKEN }}
9696
DEVITO_LOGGING=DEBUG
9797
PYTHONFAULTHANDLER=1
98-
command: >
99-
pytest
100-
-vvv
101-
--capture=no
102-
--showlocals
103-
--log-cli-level=DEBUG
104-
-o log_cli=true
105-
--full-trace
106-
--durations=10
107-
--cov
108-
--cov-config=.coveragerc
109-
--cov-report=xml
98+
command: |
99+
pytest \
100+
-vvv \
101+
--capture=no \
102+
--showlocals \
103+
--log-cli-level=DEBUG \
104+
-o log_cli=true \
105+
--full-trace \
106+
--durations=10 \
107+
--cov \
108+
--cov-config=.coveragerc \
109+
--cov-report=xml \
110110
${{ matrix.test_files }}
111111
112112
- name: Test examples

0 commit comments

Comments
 (0)