diff options
author | Daimona Eaytoy <daimona.wiki@gmail.com> | 2023-08-01 14:47:09 +0200 |
---|---|---|
committer | Daimona Eaytoy <daimona.wiki@gmail.com> | 2023-08-08 15:30:54 +0000 |
commit | 6bde309c00e90a5a40f1d4b45c0e866a1dda1afc (patch) | |
tree | d56487842d15dfafa540b3ab0b7fef11e2087043 /phpunit.xml.dist | |
parent | 5b6e6a2b5644456ef055ec252672865edc4e6c18 (diff) | |
download | mediawikicore-6bde309c00e90a5a40f1d4b45c0e866a1dda1afc.tar.gz mediawikicore-6bde309c00e90a5a40f1d4b45c0e866a1dda1afc.zip |
tests: Unbreak and actually run ExportDemoTest
This test was not being run because the docs directory wasn't included
in the PHPUnit XML config files. As a direct consequence, the test was
extremely broken: it used the non-namespaced DumpTestCase class which no
longer exists, it referenced XML files with the wrong path, and then the
test had other non-error failures to fix.
Change-Id: I188cbb1de68d39c7a484d4c6f808678af80d11ab
Diffstat (limited to 'phpunit.xml.dist')
-rw-r--r-- | phpunit.xml.dist | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 6dff945061d2..b3b0fe72af74 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -61,6 +61,9 @@ <testsuite name="integration"> <directory>tests/phpunit/integration</directory> </testsuite> + <testsuite name="docs"> + <directory>tests/phpunit/docs</directory> + </testsuite> </testsuites> <groups> <exclude> |