File tree Expand file tree Collapse file tree 3 files changed +14
-14
lines changed Expand file tree Collapse file tree 3 files changed +14
-14
lines changed Original file line number Diff line number Diff line change 11
11
- 7.1
12
12
- hhvm
13
13
14
- before_install :
15
- # This update is mandatory or the 'apt-get install' calls following will fail
16
- - sudo apt-get update -qq
17
- - sudo apt-get install -y apache2 libapache2-mod-fastcgi
18
- # start the xvfb display needed for firefox
19
- - export DISPLAY=:99.0
20
- - sh -e /etc/init.d/xvfb start
21
- - sh ./test/CI/Travis/setup_selenium.sh
22
- - sh ./test/CI/Travis/setup_apache.sh
14
+ # before_install:
15
+ # # This update is mandatory or the 'apt-get install' calls following will fail
16
+ # - sudo apt-get update -qq
17
+ # - sudo apt-get install -y apache2 libapache2-mod-fastcgi
18
+ # # start the xvfb display needed for firefox
19
+ # - export DISPLAY=:99.0
20
+ # - sh -e /etc/init.d/xvfb start
21
+ # - sh ./test/CI/Travis/setup_selenium.sh
22
+ # - sh ./test/CI/Travis/setup_apache.sh
23
23
24
24
before_script :
25
25
- composer install --no-interaction
26
26
27
27
script :
28
28
- mkdir -p build/logs
29
- - vendor/bin/phpunit --coverage-clover build/logs/clover.xml
29
+ - vendor/bin/phpunit --coverage-clover build/logs/clover.xml --group Unit
30
30
31
31
after_script :
32
32
- vendor/bin/coveralls
Original file line number Diff line number Diff line change 27
27
* Test WebDriver\Exception class
28
28
*
29
29
* @package WebDriver
30
+ *
31
+ * @group Unit
30
32
*/
31
33
class ExceptionTest extends \PHPUnit_Framework_TestCase
32
34
{
33
35
/**
34
36
* test factory()
35
- *
36
- * @group Unit
37
37
*/
38
38
public function testFactory ()
39
39
{
Original file line number Diff line number Diff line change 27
27
* Test WebDriver\Storage class
28
28
*
29
29
* @package WebDriver
30
+ *
31
+ * @group Unit
30
32
*/
31
33
class StorageTest extends \PHPUnit_Framework_TestCase
32
34
{
33
35
/**
34
36
* test factory()
35
- *
36
- * @group Unit
37
37
*/
38
38
public function testFactory ()
39
39
{
You can’t perform that action at this time.
0 commit comments