File tree Expand file tree Collapse file tree 5 files changed +5
-19
lines changed Expand file tree Collapse file tree 5 files changed +5
-19
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,9 @@ matrix:
18
18
- php : 7.2
19
19
- php : 7.3
20
20
env : BENCHMARK=1
21
- - php : 7.4snapshot
21
+ - php : 7.4
22
+ - php : 8.0
23
+ dist : bionic
22
24
fast_finish : true
23
25
24
26
cache :
28
30
before_script :
29
31
- if [[ SCRUTINIZER != '1' ]]; then phpenv config-rm xdebug.ini || true; fi
30
32
- composer self-update
33
+ - if [[ ${TRAVIS_PHP_VERSION:0:1} == "8" ]]; then composer config platform.php 7.4; fi
31
34
- composer update $COMPOSER_FLAGS --prefer-dist
32
35
33
36
script :
Original file line number Diff line number Diff line change 26
26
"php" : " >=5.3.0"
27
27
},
28
28
"require-dev" : {
29
- "phpunit/phpunit" : " ^4.8.35"
29
+ "phpunit/phpunit" : " ^4.8.35 || ^5.7.21 || ^6 || ^7 "
30
30
},
31
31
"autoload" : {
32
32
"psr-4" : {"Masterminds\\ " : " src" }
Original file line number Diff line number Diff line change 5
5
<directory >test/HTML5/</directory >
6
6
</testsuite >
7
7
</testsuites >
8
- <filter >
9
- <blacklist >
10
- <file >systemlib.phpreflection_hni</file >
11
- <file >src/HTML5/Parser/InputStream.php</file >
12
- <file >src/HTML5/Serializer/RulesInterface.php</file >
13
- <file >src/HTML5/Entities.php</file >
14
- <file >src/HTML5/Serializer/HTML5Entities.php</file >
15
- </blacklist >
16
- </filter >
17
8
</phpunit >
Original file line number Diff line number Diff line change @@ -568,9 +568,6 @@ public function testIllegalTagNames()
568
568
}
569
569
}
570
570
571
- /**
572
- * @depends testCharacterReference
573
- */
574
571
public function testTagAttributes ()
575
572
{
576
573
// Opening tags.
Original file line number Diff line number Diff line change @@ -11,11 +11,6 @@ class TestCase extends BaseTestCase
11
11
12
12
const DOC_CLOSE = '</body></html> ' ;
13
13
14
- public function testFoo ()
15
- {
16
- // Placeholder. Why is PHPUnit emitting warnings about no tests?
17
- }
18
-
19
14
public function getInstance (array $ options = array ())
20
15
{
21
16
return new HTML5 ($ options );
You can’t perform that action at this time.
0 commit comments