mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 12:24:49 +01:00
dabfb16e34
* Run tests in random order Being able to run tests in any order is a pre-requisite for being able to run them in parallel. * Reset type coverage between tests, fix affected tests * Reset parser and lexer between test runs and on php version change Previously lexer was reset, but parser kept the reference to the old one, and reference to the parser was kept by StatementsProvider. This resulted in order-dependent tests - if the parser was first initialized with phpVersion set to 7.4 then arrow functions worked fine, but were failing when the parser was initially constructed with settings for 7.3 This can be demonstrated on current master by upgrading to nikic/php-parser:4.9 and running: ``` vendor/bin/phpunit --no-coverage --filter="inferredArgArrowFunction" tests/ClosureTest.php ``` Now all tests using PHP 7.4 features must set the PHP version accordingly. * Marked more tests using 7.4 syntax * Reset newline-between-annotation flag between tests * Resolve real paths before passing them to checkPaths When checkPaths is called from psalm.php the paths are resolved, so we just mimicking SUT behaviour here. * Restore newline-between-annotations in DocCommentTest * Tweak Appveyor caches * Tweak TravisCI caches * Tweak CircleCI caches * Run tests in parallel Use `vendor/bin/paratest` instead of `vendor/bin/phpunit` * Use default paratest runner on Windows WrapperRunner is not supported on Windows. * TRAVIS_TAG could be empty * Restore appveyor conditional caching
64 lines
2.9 KiB
YAML
64 lines
2.9 KiB
YAML
build: false
|
|
platform:
|
|
- x64
|
|
|
|
clone_folder: c:\projects\php-project-workspace
|
|
|
|
## Set up environment variables
|
|
init:
|
|
- SET PATH=C:\Program Files\OpenSSL;c:\tools\php;%PATH%
|
|
- SET COMPOSER_NO_INTERACTION=1
|
|
- SET PHP=1 # This var is connected to PHP install cache
|
|
- SET ANSICON=121x90 (121x90)
|
|
|
|
environment:
|
|
SSL_CERT_FILE: "C:\\tools\\php\\cacert.pem"
|
|
matrix:
|
|
- php_ver_target: 7.4
|
|
DEPS: 'high'
|
|
|
|
cache:
|
|
- '%LOCALAPPDATA%\Composer\files'
|
|
- '%LOCALAPPDATA%\Composer\vcs'
|
|
# Cache chocolatey packages
|
|
- C:\ProgramData\chocolatey\bin
|
|
- C:\ProgramData\chocolatey\lib
|
|
# Cache php install
|
|
- c:\tools\php
|
|
|
|
## Install PHP and composer, and run the appropriate composer command
|
|
install:
|
|
- IF EXIST c:\tools\php (SET PHP=0) # Checks for the PHP install being cached
|
|
- ps: appveyor-retry cinst --no-progress --params '""/InstallDir:C:\tools\php""' --ignore-checksums -y php --version ((choco search php --exact --all-versions -r | select-string -pattern $env:php_ver_target | sort { [version]($_ -split '\|' | select -last 1) } -Descending | Select-Object -first 1) -replace '[php|]','')
|
|
- appveyor DownloadFile https://curl.haxx.se/ca/cacert.pem -FileName C:\tools\php\cacert.pem
|
|
- cd c:\tools\php
|
|
- IF %PHP%==1 copy php.ini-production php.ini /Y
|
|
- IF %PHP%==1 echo date.timezone="UTC" >> php.ini
|
|
- IF %PHP%==1 echo extension_dir=ext >> php.ini
|
|
- IF %PHP%==1 echo extension=php_curl.dll >> php.ini
|
|
- IF NOT EXIST php-installed.txt echo curl.cainfo="C:/tools/php/cacert.pem" >> php.ini
|
|
- IF NOT EXIST php-installed.txt echo openssl.cafile="C:/tools/php/cacert.pem" >> php.ini
|
|
- IF %PHP%==1 echo extension=php_openssl.dll >> php.ini
|
|
- IF %PHP%==1 echo extension=php_mbstring.dll >> php.ini
|
|
- IF %PHP%==1 echo extension=php_fileinfo.dll >> php.ini
|
|
- IF %PHP%==1 echo zend.assertions=1 >> php.ini
|
|
- IF %PHP%==1 echo assert.exception=On >> php.ini
|
|
- IF %PHP%==1 echo error_reporting=E_ALL >> php.ini
|
|
- IF %PHP%==1 echo @php %%~dp0composer.phar %%* > composer.bat
|
|
- IF NOT EXIST composer.phar appveyor-retry appveyor DownloadFile https://getcomposer.org/composer-stable.phar -FileName composer.phar
|
|
- cd c:\projects\php-project-workspace
|
|
- php -r "phpinfo(INFO_GENERAL);"
|
|
- if NOT DEFINED APPVEYOR_REPO_TAG_NAME (set COMPOSER_ROOT_VERSION=dev-master)
|
|
- if %DEPS%==low appveyor-retry composer update --no-interaction --no-progress --profile --prefer-lowest --prefer-stable
|
|
- if %DEPS%==high appveyor-retry composer update --no-interaction --no-progress --profile
|
|
|
|
## Run the actual test
|
|
test_script:
|
|
- cd c:\projects\php-project-workspace
|
|
- vendor/bin/paratest --log-junit build/phpunit/phpunit.xml
|
|
- php ./psalm --shepherd
|
|
|
|
on_finish:
|
|
- ps: $wc = New-Object 'System.Net.WebClient'
|
|
- ps: $wc.UploadFile("https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path .\build\phpunit\phpunit.xml))
|