Skip to content
Snippets Groups Projects
Commit b705b2d5 authored by Jorrit Schaap's avatar Jorrit Schaap
Browse files

TMSS-139: logging

parent 4d97ab94
No related branches found
No related tags found
1 merge request!96Resolve TMSS-139
......@@ -19,10 +19,16 @@
# $Id: $
import os
import unittest
from datetime import datetime
# use this to create timezone-aware datetime objects: from django.utils import timezone
import logging
logger = logging.getLogger(__name__)
logging.basicConfig(format='%(asctime)s %(levelname)s %(message)s', level=logging.DEBUG)
# todo: Tags? -> Decide how to deal with them first.
# todo: Immutability of Blueprints on db level?
......@@ -938,3 +944,6 @@ class DataproductHashTest(unittest.TestCase):
# assertDataWithUrls(self, response2.data, DataproductHash_test_data())
if __name__ == "__main__":
os.environ['TZ'] = 'UTC'
unittest.main()
......@@ -19,10 +19,15 @@
# $Id: $
import os
import unittest
from datetime import datetime
import uuid
import logging
logger = logging.getLogger(__name__)
logging.basicConfig(format='%(asctime)s %(levelname)s %(message)s', level=logging.DEBUG)
# todo: Tags? -> Decide how to deal with them first.
# todo: Immutability of Blueprints on db level?
......@@ -1554,3 +1559,7 @@ class TaskRelationBlueprintTest(unittest.TestCase):
# response = client.get('/task_blueprint/%s/task_relation_blueprint/%s/' % (task_blueprint_2.id, task_relation_blueprint_1.id), format='json', follow=True)
# self.assertEqual(response.status_code, 404)
#
if __name__ == "__main__":
os.environ['TZ'] = 'UTC'
unittest.main()
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