Created
June 14, 2018 18:51
-
-
Save ShaneRich5/e6881de1afda24b17b43895f6aca59c6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if settings.TESTING: | |
import coverage | |
cov = coverage.coverage(source=['entities'], omit=['*/tests/*']) | |
cov.set_option('report:show_missing', True) | |
cov.erase() | |
cov.start() | |
execute_from_command_line(sys.argv) | |
if settings.TESTING: | |
cov.stop() | |
cov.save() | |
cov.report() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment