diff options
| -rw-r--r-- | .appveyor.yml | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/.appveyor.yml b/.appveyor.yml index fa2fd9fc20..e536a561ff 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -110,6 +110,10 @@ before_test:          sqlite3 c:\projects\test.db "create table aTable(field1 int); drop table aTable;"          $data = "<?php`n`n`$dbms = 'phpbb\\db\\driver\\sqlite3';`n`$dbhost = 'c:\\projects\\test.db';`n`$dbport = '';`n`$dbname = '';`n`$dbuser = '';`n`$dbpasswd = '';`n`$phpbb_functional_url = 'http://phpbb.test/';"; $data | Out-File -Encoding "Default" "c:\\projects\\phpbb\\tests\\test_config.php"        } + +      # Install PhantomJS +      cinst -y phantomjs +      Start-Process "phantomjs" "--webdriver=8910" | Out-Null    - cd c:\projects\phpbb\phpBB    - php ..\composer.phar install    - choco install -y urlrewrite | 
