Skip to content

Commit

Permalink
composer: removes coveralls as dev-dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
hrach committed Jan 24, 2016
1 parent 17c1e7f commit 347e3fc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@ before_script:
script: ./tests/run.sh -s $NTESTER_FLAGS ./tests/cases

after_script:
- if [ "$TRAVIS_PHP_VERSION" == "7.0" ]; then php vendor/bin/coveralls -c tests/.coveralls.yml -v; fi
- if [ "$TRAVIS_PHP_VERSION" == "7.0" ]; then
wget https://github.com/satooshi/php-coveralls/releases/download/v1.0.1/coveralls.phar
&& php coveralls.phar --verbose --config tests/.coveralls.yml
|| true;
fi

after_failure:
# Print *.actual content & log content
Expand Down
3 changes: 1 addition & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@
"nette/caching": "~2.2",
"mockery/mockery": "~0.9",
"tracy/tracy": "~2.3",
"nette/di": "~2.3",
"satooshi/php-coveralls": "~1.0.0"
"nette/di": "~2.3"
},
"autoload": {
"psr-4": { "Nextras\\Dbal\\": "src/" },
Expand Down

0 comments on commit 347e3fc

Please sign in to comment.