Skip to content

Instantly share code, notes, and snippets.

@mcdonc
Last active December 10, 2015 18:18
Show Gist options
  • Save mcdonc/4473448 to your computer and use it in GitHub Desktop.
Save mcdonc/4473448 to your computer and use it in GitHub Desktop.
flask coverage
[chrism@thinko flask]$ env27/bin/coverage run --source=flask setup.py test
running test
running egg_info
writing requirements to Flask.egg-info/requires.txt
writing Flask.egg-info/PKG-INFO
writing top-level names to Flask.egg-info/top_level.txt
writing dependency_links to Flask.egg-info/dependency_links.txt
reading manifest file 'Flask.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no previously-included files matching '*.pyc' found under directory 'docs'
warning: no previously-included files matching '*.pyo' found under directory 'docs'
warning: no previously-included files matching '*.pyo' found under directory 'tests'
warning: no previously-included files matching '*.pyo' found under directory 'examples'
no previously-included directories found matching 'docs/_build'
no previously-included directories found matching 'docs/_themes/.git'
writing manifest file 'Flask.egg-info/SOURCES.txt'
running build_ext
test_app_context_provides_current_app (flask.testsuite.appctx.AppContextTestCase) ... ok
test_app_tearing_down (flask.testsuite.appctx.AppContextTestCase) ... ok
test_basic_url_generation (flask.testsuite.appctx.AppContextTestCase) ... ok
test_context_refcounts (flask.testsuite.appctx.AppContextTestCase) ... ok
test_custom_app_ctx_globals_class (flask.testsuite.appctx.AppContextTestCase) ... ok
test_request_context_means_app_context (flask.testsuite.appctx.AppContextTestCase) ... ok
test_url_generation_requires_server_name (flask.testsuite.appctx.AppContextTestCase) ... ok
test_url_generation_without_context_fails (flask.testsuite.appctx.AppContextTestCase) ... ok
test_after_request_processing (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_before_after_request_order (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_before_first_request_functions (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_before_request_and_routing_errors (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_build_error_handler (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_custom_converters (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_debug_mode_complains_after_first_request (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_enctype_debug_helper (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_endpoint_decorator (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_error_handling (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_exception_propagation (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_extended_flashing (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_flashes (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_inject_blueprint_url_defaults (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_make_response (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_make_response_with_response_instance (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_max_content_length (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_missing_session (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_none_response (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_options_handling_disabled (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_options_on_multiple_rules (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_options_work (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_preserve_only_once (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_proper_test_request_context (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_request_dispatching (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_request_locals (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_request_processing (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_response_creation (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_route_decorator_custom_endpoint (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_routing_redirect_debugging (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_session (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_session_expiration (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_session_special_types (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_session_stored_last (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_session_using_application_root (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_session_using_server_name (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_session_using_server_name_and_port (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_session_using_session_settings (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_static_files (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_teardown_on_pop (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_teardown_request_handler (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_teardown_request_handler_debug_mode (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_teardown_request_handler_error (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_test_app_proper_environ (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_trapping_of_all_http_exceptions (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_trapping_of_bad_request_key_errors (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_url_generation (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_url_mapping (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_url_processors (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_user_error_handling (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_werkzeug_routing (flask.testsuite.basic.BasicFunctionalityTestCase) ... ok
test_context_binding (flask.testsuite.basic.ContextTestCase) ... ok
test_context_test (flask.testsuite.basic.ContextTestCase) ... ok
test_manual_context_binding (flask.testsuite.basic.ContextTestCase) ... ok
test_basic_support (flask.testsuite.basic.SubdomainTestCase) ... ok
test_module_static_path_subdomain (flask.testsuite.basic.SubdomainTestCase) ... ok
test_module_subdomain_support (flask.testsuite.basic.SubdomainTestCase) ... ok
test_subdomain_matching (flask.testsuite.basic.SubdomainTestCase) ... ok
test_subdomain_matching_with_ports (flask.testsuite.basic.SubdomainTestCase) ... ok
test_add_template_filter (flask.testsuite.blueprints.BlueprintTestCase) ... ok
test_add_template_filter_with_name (flask.testsuite.blueprints.BlueprintTestCase) ... ok
test_add_template_filter_with_name_and_template (flask.testsuite.blueprints.BlueprintTestCase) ... ok
test_add_template_filter_with_template (flask.testsuite.blueprints.BlueprintTestCase) ... ok
test_add_template_test (flask.testsuite.blueprints.BlueprintTestCase) ... ok
test_add_template_test_with_name (flask.testsuite.blueprints.BlueprintTestCase) ... ok
test_add_template_test_with_name_and_template (flask.testsuite.blueprints.BlueprintTestCase) ... ok
test_add_template_test_with_template (flask.testsuite.blueprints.BlueprintTestCase) ... ok
test_blueprint_specific_error_handling (flask.testsuite.blueprints.BlueprintTestCase) ... ok
test_blueprint_url_definitions (flask.testsuite.blueprints.BlueprintTestCase) ... ok
test_blueprint_url_processors (flask.testsuite.blueprints.BlueprintTestCase) ... ok
test_default_static_cache_timeout (flask.testsuite.blueprints.BlueprintTestCase) ... ok
test_dotted_names (flask.testsuite.blueprints.BlueprintTestCase) ... ok
test_empty_url_defaults (flask.testsuite.blueprints.BlueprintTestCase) ... ok
test_route_decorator_custom_endpoint (flask.testsuite.blueprints.BlueprintTestCase) ... ok
test_route_decorator_custom_endpoint_with_dots (flask.testsuite.blueprints.BlueprintTestCase) ... ok
test_template_filter (flask.testsuite.blueprints.BlueprintTestCase) ... ok
test_template_filter_after_route_with_template (flask.testsuite.blueprints.BlueprintTestCase) ... ok
test_template_filter_with_name (flask.testsuite.blueprints.BlueprintTestCase) ... ok
test_template_filter_with_name_and_template (flask.testsuite.blueprints.BlueprintTestCase) ... ok
test_template_filter_with_template (flask.testsuite.blueprints.BlueprintTestCase) ... ok
test_template_test (flask.testsuite.blueprints.BlueprintTestCase) ... ok
test_template_test_after_route_with_template (flask.testsuite.blueprints.BlueprintTestCase) ... ok
test_template_test_with_name (flask.testsuite.blueprints.BlueprintTestCase) ... ok
test_template_test_with_name_and_template (flask.testsuite.blueprints.BlueprintTestCase) ... ok
test_template_test_with_template (flask.testsuite.blueprints.BlueprintTestCase) ... ok
test_templates_and_static (flask.testsuite.blueprints.BlueprintTestCase) ... ok
test_templates_list (flask.testsuite.blueprints.BlueprintTestCase) ... ok
test_basic_module (flask.testsuite.blueprints.ModuleTestCase) ... ok
test_context_processors (flask.testsuite.blueprints.ModuleTestCase) ... ok
test_default_endpoint_name (flask.testsuite.blueprints.ModuleTestCase) ... ok
test_endpoint_decorator (flask.testsuite.blueprints.ModuleTestCase) ... ok
test_error_handling (flask.testsuite.blueprints.ModuleTestCase) ... ok
test_late_binding (flask.testsuite.blueprints.ModuleTestCase) ... ok
test_request_processing (flask.testsuite.blueprints.ModuleTestCase) ... ok
test_safe_access (flask.testsuite.blueprints.ModuleTestCase) ... ok
test_templates_and_static (flask.testsuite.blueprints.ModuleTestCase) ... ok
test_config_from_class (flask.testsuite.config.ConfigTestCase) ... ok
test_config_from_envvar (flask.testsuite.config.ConfigTestCase) ... ok
test_config_from_envvar_missing (flask.testsuite.config.ConfigTestCase) ... ok
test_config_from_file (flask.testsuite.config.ConfigTestCase) ... ok
test_config_from_object (flask.testsuite.config.ConfigTestCase) ... ok
test_config_missing (flask.testsuite.config.ConfigTestCase) ... ok
test_session_lifetime (flask.testsuite.config.ConfigTestCase) ... ok
test_egg_installed_paths (flask.testsuite.config.InstanceTestCase) ... ok
test_explicit_instance_paths (flask.testsuite.config.InstanceTestCase) ... ok
test_installed_module_paths (flask.testsuite.config.InstanceTestCase) ... ok
test_installed_module_paths_with_limited_loader (flask.testsuite.config.InstanceTestCase) ... ok
test_installed_package_paths (flask.testsuite.config.InstanceTestCase) ... ok
test_installed_package_paths_with_limited_loader (flask.testsuite.config.InstanceTestCase) ... ok
test_main_module_paths (flask.testsuite.config.InstanceTestCase) ... ok
test_prefix_package_paths (flask.testsuite.config.InstanceTestCase) ... ok
test_prefix_package_paths_with_limited_loader (flask.testsuite.config.InstanceTestCase) ... ok
test_uninstalled_module_paths (flask.testsuite.config.InstanceTestCase) ... ok
test_uninstalled_package_paths (flask.testsuite.config.InstanceTestCase) ... ok
test_init_jinja_globals (flask.testsuite.deprecations.DeprecationsTestCase) ... ok
test_login_logout (minitwit_tests.MiniTwitTestCase)
Make sure logging in and logging out works ... ok
test_message_recording (minitwit_tests.MiniTwitTestCase)
Check if adding messages works ... ok
test_register (minitwit_tests.MiniTwitTestCase)
Make sure registering works ... ok
test_timelines (minitwit_tests.MiniTwitTestCase)
Make sure that timelines work ... ok
test_empty_db (flaskr_tests.FlaskrTestCase)
Start with a blank database. ... ok
test_login_logout (flaskr_tests.FlaskrTestCase)
Make sure login and logout works ... ok
test_messages (flaskr_tests.FlaskrTestCase)
Test that messages work ... ok
test_flaskext_broken_package_no_module_caching (flask.testsuite.ext.ExtImportHookTestCase) ... ok
test_flaskext_new_package_import_module (flask.testsuite.ext.ExtImportHookTestCase) ... ok
test_flaskext_new_package_import_normal (flask.testsuite.ext.ExtImportHookTestCase) ... ok
test_flaskext_new_package_import_submodule (flask.testsuite.ext.ExtImportHookTestCase) ... ok
test_flaskext_new_package_import_submodule_function (flask.testsuite.ext.ExtImportHookTestCase) ... ok
test_flaskext_new_simple_import_module (flask.testsuite.ext.ExtImportHookTestCase) ... ok
test_flaskext_new_simple_import_normal (flask.testsuite.ext.ExtImportHookTestCase) ... ok
test_flaskext_old_package_import_module (flask.testsuite.ext.ExtImportHookTestCase) ... ok
test_flaskext_old_package_import_normal (flask.testsuite.ext.ExtImportHookTestCase) ... ok
test_flaskext_old_package_import_submodule (flask.testsuite.ext.ExtImportHookTestCase) ... ok
test_flaskext_old_package_import_submodule_function (flask.testsuite.ext.ExtImportHookTestCase) ... ok
test_flaskext_old_simple_import_module (flask.testsuite.ext.ExtImportHookTestCase) ... ok
test_flaskext_old_simple_import_normal (flask.testsuite.ext.ExtImportHookTestCase) ... ok
test_no_error_swallowing (flask.testsuite.ext.ExtImportHookTestCase) ... ok
test_json_as_unicode (flask.testsuite.helpers.JSONTestCase) ... ok
test_json_attr (flask.testsuite.helpers.JSONTestCase) ... ok
test_json_bad_requests (flask.testsuite.helpers.JSONTestCase) ... ok
test_json_bad_requests_content_type (flask.testsuite.helpers.JSONTestCase) ... ok
test_json_body_encoding (flask.testsuite.helpers.JSONTestCase) ... ok
test_json_customization (flask.testsuite.helpers.JSONTestCase) ... ok
test_jsonify (flask.testsuite.helpers.JSONTestCase) ... ok
test_modified_url_encoding (flask.testsuite.helpers.JSONTestCase) ... ok
test_template_escaping (flask.testsuite.helpers.JSONTestCase) ... ok
test_attachment (flask.testsuite.helpers.SendfileTestCase) ... ok
test_send_file_object (flask.testsuite.helpers.SendfileTestCase) ... ok
test_send_file_regular (flask.testsuite.helpers.SendfileTestCase) ... ok
test_send_file_xsendfile (flask.testsuite.helpers.SendfileTestCase) ... ok
test_static_file (flask.testsuite.helpers.SendfileTestCase) ... ok
test_debug_log (flask.testsuite.helpers.LoggingTestCase) ... ok
test_debug_log_override (flask.testsuite.helpers.LoggingTestCase) ... ok
test_exception_logging (flask.testsuite.helpers.LoggingTestCase) ... ok
test_logger_cache (flask.testsuite.helpers.LoggingTestCase) ... ok
test_processor_exceptions (flask.testsuite.helpers.LoggingTestCase) ... ok
test_url_for_with_anchor (flask.testsuite.helpers.LoggingTestCase) ... ok
test_url_with_method (flask.testsuite.helpers.LoggingTestCase) ... ok
test_name_with_import_error (flask.testsuite.helpers.NoImportsTestCase) ... ok
test_streaming_with_context (flask.testsuite.helpers.StreamingTestCase) ... ok
test_streaming_with_context_and_custom_close (flask.testsuite.helpers.StreamingTestCase) ... ok
test_streaming_with_context_as_decorator (flask.testsuite.helpers.StreamingTestCase) ... ok
test_memory_consumption (flask.testsuite.regression.MemoryTestCase) ... FAIL
test_safe_join_toplevel_pardir (flask.testsuite.regression.MemoryTestCase) ... ok
test_suppressed_exception_logging (flask.testsuite.subclassing.FlaskSubclassingTestCase) ... ok
test_add_template_filter (flask.testsuite.templating.TemplatingTestCase) ... ok
test_add_template_filter_with_name (flask.testsuite.templating.TemplatingTestCase) ... ok
test_add_template_filter_with_name_and_template (flask.testsuite.templating.TemplatingTestCase) ... ok
test_add_template_filter_with_template (flask.testsuite.templating.TemplatingTestCase) ... ok
test_add_template_test (flask.testsuite.templating.TemplatingTestCase) ... ok
test_add_template_test_with_name (flask.testsuite.templating.TemplatingTestCase) ... ok
test_add_template_test_with_name_and_template (flask.testsuite.templating.TemplatingTestCase) ... ok
test_add_template_test_with_template (flask.testsuite.templating.TemplatingTestCase) ... ok
test_context_processing (flask.testsuite.templating.TemplatingTestCase) ... ok
test_custom_template_loader (flask.testsuite.templating.TemplatingTestCase) ... ok
test_escaping (flask.testsuite.templating.TemplatingTestCase) ... ok
test_iterable_loader (flask.testsuite.templating.TemplatingTestCase) ... ok
test_macros (flask.testsuite.templating.TemplatingTestCase) ... ok
test_no_escaping (flask.testsuite.templating.TemplatingTestCase) ... ok
test_original_win (flask.testsuite.templating.TemplatingTestCase) ... ok
test_request_less_rendering (flask.testsuite.templating.TemplatingTestCase) ... ok
test_standard_context (flask.testsuite.templating.TemplatingTestCase) ... ok
test_template_filter (flask.testsuite.templating.TemplatingTestCase) ... ok
test_template_filter_with_name (flask.testsuite.templating.TemplatingTestCase) ... ok
test_template_filter_with_name_and_template (flask.testsuite.templating.TemplatingTestCase) ... ok
test_template_filter_with_template (flask.testsuite.templating.TemplatingTestCase) ... ok
test_template_test (flask.testsuite.templating.TemplatingTestCase) ... ok
test_template_test_with_name (flask.testsuite.templating.TemplatingTestCase) ... ok
test_template_test_with_name_and_template (flask.testsuite.templating.TemplatingTestCase) ... ok
test_template_test_with_template (flask.testsuite.templating.TemplatingTestCase) ... ok
test_environ_defaults (flask.testsuite.testing.TestToolsTestCase) ... ok
test_environ_defaults_from_config (flask.testsuite.testing.TestToolsTestCase) ... ok
test_redirect_keep_session (flask.testsuite.testing.TestToolsTestCase) ... ok
test_reuse_client (flask.testsuite.testing.TestToolsTestCase) ... ok
test_session_transaction_needs_cookies (flask.testsuite.testing.TestToolsTestCase) ... ok
test_session_transactions (flask.testsuite.testing.TestToolsTestCase) ... ok
test_session_transactions_keep_context (flask.testsuite.testing.TestToolsTestCase) ... ok
test_session_transactions_no_null_sessions (flask.testsuite.testing.TestToolsTestCase) ... ok
test_test_client_calls_teardown_handlers (flask.testsuite.testing.TestToolsTestCase) ... ok
test_test_client_context_binding (flask.testsuite.testing.TestToolsTestCase) ... ok
test_nosubdomain (flask.testsuite.testing.SubdomainTestCase) ... ok
test_subdomain (flask.testsuite.testing.SubdomainTestCase) ... ok
test_basic_view (flask.testsuite.views.ViewTestCase) ... ok
test_endpoint_override (flask.testsuite.views.ViewTestCase) ... ok
test_explicit_head (flask.testsuite.views.ViewTestCase) ... ok
test_implicit_head (flask.testsuite.views.ViewTestCase) ... ok
test_method_based_view (flask.testsuite.views.ViewTestCase) ... ok
test_view_decorators (flask.testsuite.views.ViewTestCase) ... ok
test_view_inheritance (flask.testsuite.views.ViewTestCase) ... ok
test_view_patching (flask.testsuite.views.ViewTestCase) ... ok
======================================================================
FAIL: test_memory_consumption (flask.testsuite.regression.MemoryTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/home/chrism/projects/flask/flask/testsuite/regression.py", line 80, in test_memory_consumption
for x in xrange(10):
File "/home/chrism/projects/flask/flask/testsuite/regression.py", line 51, in __exit__
self.testcase.fail('Example code leaked')
AssertionError: Example code leaked
----------------------------------------------------------------------
Ran 217 tests in 2.677s
FAILED (failures=1)
[chrism@thinko flask]$ env27/bin/coverage
Code coverage for Python. Use 'coverage help' for help.
[chrism@thinko flask]$ env27/bin/coverage help
Coverage.py, version 3.6
Measure, collect, and report on code coverage in Python programs.
usage: coverage <command> [options] [args]
Commands:
annotate Annotate source files with execution information.
combine Combine a number of data files.
erase Erase previously collected coverage data.
help Get help on using coverage.py.
html Create an HTML report.
report Report coverage stats on modules.
run Run a Python program and measure code execution.
xml Create an XML report of coverage results.
Use "coverage help <command>" for detailed help on any command.
Use "coverage help classic" for help on older command syntax.
For more information, see http://nedbatchelder.com/code/coverage
[chrism@thinko flask]$ env27/bin/coverage report
Name Stmts Miss Cover
---------------------------------------------------------------------------------------------------
flask/__init__ 18 0 100%
flask/app 509 54 89%
flask/blueprints 147 16 89%
flask/config 51 2 96%
flask/ctx 102 4 96%
flask/debughelpers 33 1 97%
flask/exceptions 10 0 100%
flask/ext/__init__ 7 0 100%
flask/exthook 53 4 92%
flask/globals 24 0 100%
flask/helpers 266 27 90%
flask/json 44 10 77%
flask/logging 21 0 100%
flask/module 13 0 100%
flask/sessions 125 6 95%
flask/signals 25 2 92%
flask/templating 77 1 99%
flask/testing 56 1 98%
flask/testsuite/__init__ 129 33 74%
flask/testsuite/appctx 70 1 99%
flask/testsuite/basic 882 37 96%
flask/testsuite/blueprints 541 12 98%
flask/testsuite/config 218 4 98%
flask/testsuite/deprecations 22 0 100%
flask/testsuite/examples 22 4 82%
flask/testsuite/ext 82 0 100%
flask/testsuite/helpers 383 13 97%
flask/testsuite/regression 54 3 94%
flask/testsuite/signals 63 51 19%
flask/testsuite/subclassing 26 0 100%
flask/testsuite/templates/template_filter 1 0 100%
flask/testsuite/templating 205 0 100%
flask/testsuite/test_apps/blueprintapp/__init__ 6 0 100%
flask/testsuite/test_apps/blueprintapp/apps/__init__ 0 0 100%
flask/testsuite/test_apps/blueprintapp/apps/admin/__init__ 6 0 100%
flask/testsuite/test_apps/blueprintapp/apps/frontend/__init__ 4 0 100%
flask/testsuite/test_apps/config_module_app 4 0 100%
flask/testsuite/test_apps/config_package_app/__init__ 4 0 100%
flask/testsuite/test_apps/flask_broken/__init__ 2 0 100%
flask/testsuite/test_apps/flask_broken/b 0 0 100%
flask/testsuite/test_apps/flask_newext_package/__init__ 1 0 100%
flask/testsuite/test_apps/flask_newext_package/submodule 2 0 100%
flask/testsuite/test_apps/flask_newext_simple 1 0 100%
flask/testsuite/test_apps/flaskext/__init__ 0 0 100%
flask/testsuite/test_apps/flaskext/oldext_package/__init__ 1 0 100%
flask/testsuite/test_apps/flaskext/oldext_package/submodule 2 0 100%
flask/testsuite/test_apps/flaskext/oldext_simple 1 0 100%
flask/testsuite/test_apps/lib/python2.5/site-packages/SiteEgg.egg/site_egg 2 0 100%
flask/testsuite/test_apps/lib/python2.5/site-packages/site_app 2 0 100%
flask/testsuite/test_apps/lib/python2.5/site-packages/site_package/__init__ 2 0 100%
flask/testsuite/test_apps/main_app 2 0 100%
flask/testsuite/test_apps/moduleapp/__init__ 6 0 100%
flask/testsuite/test_apps/moduleapp/apps/__init__ 0 0 100%
flask/testsuite/test_apps/moduleapp/apps/admin/__init__ 6 0 100%
flask/testsuite/test_apps/moduleapp/apps/frontend/__init__ 4 0 100%
flask/testsuite/test_apps/path/installed_package/__init__ 2 0 100%
flask/testsuite/test_apps/subdomaintestmodule/__init__ 2 0 100%
flask/testsuite/testing 172 6 97%
flask/testsuite/views 121 5 96%
flask/views 42 1 98%
flask/wrappers 45 4 91%
---------------------------------------------------------------------------------------------------
TOTAL 4721 302 94%
[chrism@thinko flask]$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment