Bug: rm "blacklist" from the codeception.yml; corrected "TESTING" instruction in README.md (#231)

This commit is contained in:
Nazar Holubovskyy 2020-09-05 19:58:16 +01:00 committed by GitHub
parent 9e0b45841b
commit 6c12534a70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 12 deletions

View File

@ -221,13 +221,13 @@ to collect code coverage. You can run your tests and collect coverage with the f
```
#collect coverage for all tests
vendor/bin/codecept run -- --coverage-html --coverage-xml
vendor/bin/codecept run --coverage --coverage-html --coverage-xml
#collect coverage only for unit tests
vendor/bin/codecept run unit -- --coverage-html --coverage-xml
vendor/bin/codecept run unit --coverage --coverage-html --coverage-xml
#collect coverage for unit and functional tests
vendor/bin/codecept run functional,unit -- --coverage-html --coverage-xml
vendor/bin/codecept run functional,unit --coverage --coverage-html --coverage-xml
```
You can see code coverage output under the `tests/_output` directory.

View File

@ -25,12 +25,3 @@ modules:
# - controllers/*
# - commands/*
# - mail/*
# blacklist:
# include:
# - assets/*
# - config/*
# - runtime/*
# - vendor/*
# - views/*
# - web/*
# - tests/*