I'm getting an error when I try to run tests using the --coverage flag.
Input
php codecept.phar run acceptance testCest.php --coverage
Output
[ErrorException] file_get_contents(http://project.local/c3/report/clear): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found
codeception.yml
coverage:
remote: false
enabled: true
include:
- application/*
public_html/index.php
<?php require __DIR__.'/../c3.php'; ?>
Versions
PHP: 5.5.12
Xdebug: 2.5.0
Codeception: 2.0.7
Thanks for any help!
J