scrutinizer

Using Vagrant on cloud CI services

て烟熏妆下的殇ゞ 提交于 2020-05-25 11:25:25
问题 Are there any cloud CI services that allow Vagrant VMs to run using VirtualBox as a provider? Early investigation shows this seems not to be possible with Travis CI or Circle CI, although the vagrant-aws plugin allows for the use of AWS servers as a Vagrant provider. Is this correct? 回答1: That's right. There are still no CI services allowing to run Vagrant via LXC or Virtualbox (and that's sad). You can't do it under Travis. You can't under CodeShip You can't under CircleCI Don't know about

Scrutinizer and specific test from phpunit

谁说我不能喝 提交于 2020-01-25 07:04:35
问题 I have this phpunit.xml file: <phpunit> <testsuites> <testsuite name="domoticz-api"> <directory suffix="Test.php">tests</directory> </testsuite> <testsuite name="scrutinizer"> <file>tests/Domoticzapi4Scrutinizer/ClientTest.php</file> </testsuite> </testsuites> </phpunit> Following this answer: How to run a specific phpunit xml testsuite? In my server I can do: ./vendor/bin/phpunit --configuration phpunit.xml --testsuite scrutinizer to perform test. Other test (main test) for several reason I