User:Hashar
From Wikitech
(Difference between revisions)
m (Back in action since December 2010.) |
|||
| Line 4: | Line 4: | ||
Back in action since December 2010. | Back in action since December 2010. | ||
| + | |||
| + | ---- | ||
| + | |||
| + | Install a snapshot of MediaWiki using sqlite: | ||
| + | <pre> | ||
| + | wget https://integration.mediawiki.org/nightly/mediawiki/core/mediawiki-78a5729.zip | ||
| + | unzip mediawiki-78a5729.zip | ||
| + | cd mediawiki-78a5729 | ||
| + | # Install a basic database using sqlite as a backend | ||
| + | php maintenance/install.php benchwiki sysop --pass secret --dbtype sqlite --dbpath . | ||
| + | |||
| + | # Run the Dump test suite | ||
| + | php tests/phpunit/phpunit.php --group Dump | ||
| + | </pre> | ||
Revision as of 09:57, 1 November 2012
Back in action since December 2010.
Install a snapshot of MediaWiki using sqlite:
wget https://integration.mediawiki.org/nightly/mediawiki/core/mediawiki-78a5729.zip unzip mediawiki-78a5729.zip cd mediawiki-78a5729 # Install a basic database using sqlite as a backend php maintenance/install.php benchwiki sysop --pass secret --dbtype sqlite --dbpath . # Run the Dump test suite php tests/phpunit/phpunit.php --group Dump