We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
codeception.yml like this:
api.suit.yml like this:
index.php
when i test in command: php vendor/codeception/codeception/codecept run --coverage --coverage-xml --coverage-html
_output/coverage:open the html ,nothing to test result all zero;how can t do to get the right coverage?
The text was updated successfully, but these errors were encountered:
I'm having a similar issue, I'm running in a docker compose setup using Selenium. codeception yaml
paths: tests: tests output: tests/_output data: tests/_data support: tests/_support envs: tests/_envs actor_suffix: Tester extensions: enabled: - Codeception\Extension\RunFailed coverage: enabled: true remote: true include: - src/*
acceptance yaml
actor: AcceptanceTester modules: enabled: - WebDriver: host: 'chrome' url: 'http://customs.docker' browser: chrome capabilities: acceptInsecureCerts: true chromeOptions: args: ["--headless", "--disable-gpu"] - \Helper\Acceptance step_decorators: ~
public/index.php
$_SERVER['HTTP_X_CODECEPTION_CODECOVERAGE'] = \getenv('APP_ENV') === 'test' ? true : false; include __DIR__ . '/../c3.php';
Any suggestions?
Sorry, something went wrong.
No branches or pull requests
codeception.yml like this:
api.suit.yml like this:
index.php
when i test in command:
php vendor/codeception/codeception/codecept run --coverage --coverage-xml --coverage-html
_output/coverage:open the html ,nothing to test result all zero;how can t do to get the right coverage?
The text was updated successfully, but these errors were encountered: