Skip to content
Snippets Groups Projects
Commit 749e374a authored by Ambrus Simon's avatar Ambrus Simon
Browse files

Ignore implicit tempdir cleanup

parent b1cfc489
No related branches found
No related tags found
No related merge requests found
......@@ -2,8 +2,15 @@ import atexit
import json
import os
import traceback
import warnings
import webapp2
# Disable warnings for implicit tempfile.TemporaryDirectory cleanup
warnings.filterwarnings('ignore', message=r'Implicitly cleaning up <TemporaryDirectory')
# Enable code coverage for testing when API is started
# Start coverage before local module loading so their def and imports are counted
# http://coverage.readthedocs.io/en/coverage-4.2/faq.html
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment