Skip to content

Commit b050232

Browse files
committed
MOBILE-4864 github: Fix moodleappbehat snapshot placement
1 parent 4678244 commit b050232

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/acceptance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ jobs:
189189
if: ${{ failure() }}
190190
with:
191191
name: snapshot_failures-${{ matrix.tags }}
192-
path: moodle/local/moodleappbehat/tests/behat/snapshots/failures/*
192+
path: moodle/public/local/moodleappbehat/tests/behat/snapshots/failures/*
193193

194194
- name: Upload Behat failures
195195
uses: actions/upload-artifact@v4

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ jobs:
244244
if: ${{ failure() }}
245245
with:
246246
name: snapshot_failures-${{ matrix.tags }}
247-
path: moodle/local/moodleappbehat/tests/behat/snapshots/failures/*
247+
path: moodle/public/local/moodleappbehat/tests/behat/snapshots/failures/*
248248

249249
- name: Upload Behat failures
250250
uses: actions/upload-artifact@v4

.github/workflows/update_behat_snapshots.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ jobs:
191191
for path in `find app/src -path "**/behat/snapshots/*.png"`
192192
do
193193
filename=`basename $path`
194-
overriden="moodle/local/moodleappbehat/tests/behat/snapshots/$filename"
194+
overriden="moodle/public/local/moodleappbehat/tests/behat/snapshots/$filename"
195195
if ! cmp -s $path $overriden; then
196196
cp "$overriden" "snapshots/$filename"
197197
echo "Changed snapshot: $filename"

0 commit comments

Comments
 (0)