mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 05:58:34 +01:00
61ff13f0f3
It can be enabled if desired from CLI using the --cache-result option (or modifying the phpunit.xml cacheResult to true). That will create the .phpunit.result.cache files that, later, can be used to easily repeat failed (defects) tests or run the slow ones first and more. See the --order-by option to know more about all the available criteria. For example: ./vendor/bin/phpunit --order-by=defects --stop-on-defect (will run all the failed ones first, stopping on problem, useful for TDD and other scenarios, not so much for complete runs or CI). Also, added to .gitignore so they won't be committed ever.
49 lines
1.1 KiB
Plaintext
49 lines
1.1 KiB
Plaintext
# This file specifies intentionally untracked files that all Moodle git
|
|
# repositories should ignore. It is recommended not to modify this file in your
|
|
# local clone. Instead, use .git/info/exclude and add new records there as
|
|
# needed.
|
|
#
|
|
# Example: if you deploy a contributed plugin mod/foobar into your site, put
|
|
# the following line into .git/info/exclude file in your Moodle clone:
|
|
# /mod/foobar/
|
|
#
|
|
# See gitignore(5) man page for more details
|
|
#
|
|
|
|
# Swap files (vim)
|
|
[._]*.s[a-v][a-z]
|
|
[._]*.sw[a-p]
|
|
[._]s[a-rt-v][a-z]
|
|
[._]ss[a-gi-z]
|
|
[._]sw[a-p]
|
|
# Temporary files including undo
|
|
*~
|
|
#
|
|
/config.php
|
|
/lib/editor/tinymce/extra/tools/temp/
|
|
/tags
|
|
/TAGS
|
|
/cscope.*
|
|
/.patches/
|
|
/.idea/
|
|
/nbproject/
|
|
CVS
|
|
.DS_Store
|
|
/.settings/
|
|
/.project
|
|
/.buildpath
|
|
/.cache
|
|
.phpunit.result.cache
|
|
phpunit.xml
|
|
# Composer support. Do not ignore composer.json, or composer.lock. These should be shipped by us.
|
|
composer.phar
|
|
/vendor/
|
|
/behat.yml
|
|
*/yui/build/*/*-coverage.js
|
|
/lib/yuilib/*/build/*/*-coverage.js
|
|
# lib/yuilib/version/module/module-coverage.js
|
|
/lib/yuilib/*/*/*-coverage.js
|
|
atlassian-ide-plugin.xml
|
|
/node_modules/
|
|
/.vscode/
|