Skip to content

Commit d52cdc3

Browse files
committed
travis: removed phpdbg due to segfaults
This also reverts commit 0b6bfc7.
1 parent 7e505ab commit d52cdc3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ before_script:
1616
# Install Nette Tester & Code Checker
1717
- travis_retry composer install --no-interaction --prefer-dist
1818
- travis_retry composer create-project nette/code-checker temp/code-checker ~2.5 --no-interaction
19-
- if [ $TRAVIS_PHP_VERSION == "7.0" ]; then coverage="-p phpdbg --coverage ./coverage.xml --coverage-src ./src"; fi
19+
# - if [ $TRAVIS_PHP_VERSION == "7.0" ]; then coverage="-p phpdbg --coverage ./coverage.xml --coverage-src ./src"; fi
2020

2121
after_script:
2222
# Report Code Coverage

tests/Utils/Object.events.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class TestClass extends Nette\Object
1313
{
1414
public $onPublic;
1515

16-
//static public $onPublicStatic;
16+
static public $onPublicStatic;
1717

1818
protected $onProtected;
1919

tests/Utils/SmartObject.events.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class TestClass
1515

1616
public $onPublic;
1717

18-
//static public $onPublicStatic;
18+
static public $onPublicStatic;
1919

2020
protected $onProtected;
2121

0 commit comments

Comments
 (0)