We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e13445f commit 6432740Copy full SHA for 6432740
1 file changed
.github/workflows/ci.yml
@@ -77,7 +77,12 @@ jobs:
77
78
- name: Run PHPUnit (MW master)
79
if: matrix.mw == 'master'
80
- run: composer phpunit -- -c extensions/ExternalContent/
+ run: |
81
+ # phpunit.xml.template is export-ignored from the GitHub tarball, fetch it separately
82
+ if [ ! -f phpunit.xml.template ]; then
83
+ wget -q -O phpunit.xml.template "https://raw.githubusercontent.com/wikimedia/mediawiki/${{ matrix.mw }}/phpunit.xml.template"
84
+ fi
85
+ composer phpunit -- extensions/ExternalContent/tests/
86
87
- name: Run parser tests
88
run: php tests/parser/parserTests.php --file=extensions/ExternalContent/tests/parser/parserTests.txt
0 commit comments