mirror of
https://github.com/bspeice/metrik
synced 2024-11-04 22:48:11 -05:00
Log what travis thinks the date is
This commit is contained in:
parent
e6db9f2551
commit
c4f0655322
@ -1,9 +1,9 @@
|
|||||||
from unittest import TestCase
|
from unittest import TestCase
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
import pytz
|
import pytz
|
||||||
|
import logging
|
||||||
|
|
||||||
from metrik.tasks.ice import LiborRateTask
|
from metrik.tasks.ice import LiborRateTask
|
||||||
from metrik.conf import USER_AGENT
|
|
||||||
|
|
||||||
|
|
||||||
# noinspection PyUnresolvedReferences
|
# noinspection PyUnresolvedReferences
|
||||||
@ -23,6 +23,7 @@ class TestICE(TestCase):
|
|||||||
|
|
||||||
london_tz = pytz.timezone('Europe/London')
|
london_tz = pytz.timezone('Europe/London')
|
||||||
actual = london_tz.localize(datetime(2016, 8, 8, 11, 45, 6))
|
actual = london_tz.localize(datetime(2016, 8, 8, 11, 45, 6))
|
||||||
|
logging.info('Publication date in London time: {}'.format(aug8_libor['publication'].astimezone(london_tz)))
|
||||||
assert aug8_libor['publication'] == actual
|
assert aug8_libor['publication'] == actual
|
||||||
|
|
||||||
def test_correct_libor_Aug9_2010(self):
|
def test_correct_libor_Aug9_2010(self):
|
||||||
@ -40,6 +41,7 @@ class TestICE(TestCase):
|
|||||||
|
|
||||||
london_tz = pytz.timezone('Europe/London')
|
london_tz = pytz.timezone('Europe/London')
|
||||||
actual = london_tz.localize(datetime(2010, 8, 9, 15, 49, 12))
|
actual = london_tz.localize(datetime(2010, 8, 9, 15, 49, 12))
|
||||||
|
logging.info('Publication date in London time: {}'.format(aug9_libor['publication'].astimezone(london_tz)))
|
||||||
assert aug9_libor['publication'] == actual
|
assert aug9_libor['publication'] == actual
|
||||||
|
|
||||||
def test_correct_date_reasoning(self):
|
def test_correct_date_reasoning(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user