mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-30 05:11:27 +01:00
* Dev: Add setup scripts for phpunit/database # Dev: Add setup scripts for phpunit/database Some scripts that helped to setup some unit testing. * NEW Add Windows ci workflow # NEW Add Windows ci workflow This adds a workflow to execute ci on a windows platform * Disable open_basedir for now, to test effect * Qual: Exclude documents directory from codespell # Qual: Exclude documents directory from codespell Documents directory may be present during development (unit tests). Do not check spelling there * Qual: Add codespell exceptions # Qual: Add codespell exceptions Add new exceptions to codespell (var identified as misspelling).
7 lines
340 B
Batchfile
7 lines
340 B
Batchfile
REM SAMPLE WINDOWS SCRIPT TO START TESTS
|
|
REM
|
|
REM CURRENTLY THIS SCRIPT MUST BE LOCATED AT THE ROOT OF THE PROJECT.
|
|
REM A copy of phpunit-9.5.phar is required
|
|
SET OPEN_BASEDIR=%~dp0
|
|
c:\wamp64\bin\php\php7.4.33\php -dopen_basedir=%OPEN_BASEDIR% .\phpunit-9.5.phar -d memory_limit=-1 -c test\phpunit\phpunittest.xml test\phpunit\AllTests.php
|