arrow-py / arrow

🏹 Better dates & times for Python
https://arrow.readthedocs.io
Apache License 2.0
8.71k stars 673 forks source link

0.15.6: test suite is failing #782

Closed kloczek closed 4 years ago

kloczek commented 4 years ago

0.15.5 was OK.

Python 3.8.2.

+ cd arrow-0.15.6
+ nosetests --all-modules arrow tests
.EEEE.E.EEEEEEEEEE.EEEEEEEEEEEEEEEE.EEEEEEEEEEEEE.EEEEEEEEEE...........EEEEEEEEE..........................E.EEEEEEEEEEEEEE.............................EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE.EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE....EE..EEEEEE....EEEEEEEEEEEEEEEEEEEEEEEEEEEE..EEEEEEEEEEE......EEE.EEEEEEE...
======================================================================
ERROR: tests.test_api.TestModule.test_get
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
TypeError: test_get() missing 1 required positional argument: 'mocker'

======================================================================
ERROR: tests.test_api.TestModule.test_now
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
TypeError: test_now() missing 1 required positional argument: 'mocker'

======================================================================
ERROR: tests.test_api.TestModule.test_utcnow
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
TypeError: test_utcnow() missing 1 required positional argument: 'mocker'

======================================================================
ERROR: tests.test_arrow.TestArrowAttribute.test_float_timestamp
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 275, in test_float_timestamp
    result = self.arrow.float_timestamp - self.arrow.timestamp
AttributeError: 'TestArrowAttribute' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowAttribute.test_getattr_dt_value
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 256, in test_getattr_dt_value
    assert self.arrow.year == 2013
AttributeError: 'TestArrowAttribute' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowAttribute.test_getattr_week
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 231, in test_getattr_week
    assert self.arrow.week == 1
AttributeError: 'TestArrowAttribute' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowAttribute.test_naive
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 265, in test_naive
    assert self.arrow.naive == self.arrow._datetime.replace(tzinfo=None)
AttributeError: 'TestArrowAttribute' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowAttribute.test_timestamp
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 269, in test_timestamp
    assert self.arrow.timestamp == calendar.timegm(
AttributeError: 'TestArrowAttribute' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowAttribute.test_tzinfo
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 260, in test_tzinfo
    self.arrow.tzinfo = tz.gettz("PST")
AttributeError: 'TestArrowAttribute' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowComparison.test_eq
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 284, in test_eq
    assert self.arrow == self.arrow
AttributeError: 'TestArrowComparison' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowComparison.test_ge
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 310, in test_ge
    self.arrow >= "abc"
AttributeError: 'TestArrowComparison' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowComparison.test_gt
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 296, in test_gt
    arrow_cmp = self.arrow.shift(minutes=1)
AttributeError: 'TestArrowComparison' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowComparison.test_le
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 331, in test_le
    self.arrow <= "abc"
AttributeError: 'TestArrowComparison' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowComparison.test_lt
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 317, in test_lt
    arrow_cmp = self.arrow.shift(minutes=1)
AttributeError: 'TestArrowComparison' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowComparison.test_ne
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 290, in test_ne
    assert not (self.arrow != self.arrow)
AttributeError: 'TestArrowComparison' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowDatetimeInterface.test_astimezone
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 415, in test_astimezone
    result = self.arrow.astimezone(other_tz)
AttributeError: 'TestArrowDatetimeInterface' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowDatetimeInterface.test_ctime
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 481, in test_ctime
    result = self.arrow.ctime()
AttributeError: 'TestArrowDatetimeInterface' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowDatetimeInterface.test_date
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 395, in test_date
    result = self.arrow.date()
AttributeError: 'TestArrowDatetimeInterface' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowDatetimeInterface.test_dst
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 427, in test_dst
    result = self.arrow.dst()
AttributeError: 'TestArrowDatetimeInterface' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowDatetimeInterface.test_isocalendar
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 463, in test_isocalendar
    result = self.arrow.isocalendar()
AttributeError: 'TestArrowDatetimeInterface' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowDatetimeInterface.test_isoformat
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 469, in test_isoformat
    result = self.arrow.isoformat()
AttributeError: 'TestArrowDatetimeInterface' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowDatetimeInterface.test_isoweekday
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 457, in test_isoweekday
    result = self.arrow.isoweekday()
AttributeError: 'TestArrowDatetimeInterface' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowDatetimeInterface.test_simplejson
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 475, in test_simplejson
    result = json.dumps({"v": self.arrow.for_json()}, for_json=True)
AttributeError: 'TestArrowDatetimeInterface' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowDatetimeInterface.test_strftime
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 487, in test_strftime
    result = self.arrow.strftime("%Y")
AttributeError: 'TestArrowDatetimeInterface' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowDatetimeInterface.test_time
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 401, in test_time
    result = self.arrow.time()
AttributeError: 'TestArrowDatetimeInterface' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowDatetimeInterface.test_timetuple
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 433, in test_timetuple
    result = self.arrow.timetuple()
AttributeError: 'TestArrowDatetimeInterface' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowDatetimeInterface.test_timetz
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 407, in test_timetz
    result = self.arrow.timetz()
AttributeError: 'TestArrowDatetimeInterface' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowDatetimeInterface.test_toordinal
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 445, in test_toordinal
    result = self.arrow.toordinal()
AttributeError: 'TestArrowDatetimeInterface' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowDatetimeInterface.test_utcoffset
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 421, in test_utcoffset
    result = self.arrow.utcoffset()
AttributeError: 'TestArrowDatetimeInterface' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowDatetimeInterface.test_utctimetuple
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 439, in test_utctimetuple
    result = self.arrow.utctimetuple()
AttributeError: 'TestArrowDatetimeInterface' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowDatetimeInterface.test_weekday
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 451, in test_weekday
    result = self.arrow.weekday()
AttributeError: 'TestArrowDatetimeInterface' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowHumanize.test_arrow
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1618, in test_arrow
    arw = arrow.Arrow.fromdatetime(self.datetime)
AttributeError: 'TestArrowHumanize' object has no attribute 'datetime'

======================================================================
ERROR: tests.test_arrow.TestArrowHumanize.test_datetime_tzinfo
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1626, in test_datetime_tzinfo
    arw = arrow.Arrow.fromdatetime(self.datetime)
AttributeError: 'TestArrowHumanize' object has no attribute 'datetime'

======================================================================
ERROR: tests.test_arrow.TestArrowHumanize.test_day
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1504, in test_day
    later = self.now.shift(days=1)
AttributeError: 'TestArrowHumanize' object has no attribute 'now'

======================================================================
ERROR: tests.test_arrow.TestArrowHumanize.test_days
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1531, in test_days
    later = self.now.shift(days=2)
AttributeError: 'TestArrowHumanize' object has no attribute 'now'

======================================================================
ERROR: tests.test_arrow.TestArrowHumanize.test_granularity
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1304, in test_granularity
    assert self.now.humanize(granularity="second") == "just now"
AttributeError: 'TestArrowHumanize' object has no attribute 'now'

======================================================================
ERROR: tests.test_arrow.TestArrowHumanize.test_hour
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1484, in test_hour
    later = self.now.shift(hours=1)
AttributeError: 'TestArrowHumanize' object has no attribute 'now'

======================================================================
ERROR: tests.test_arrow.TestArrowHumanize.test_hours
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1494, in test_hours
    later = self.now.shift(hours=2)
AttributeError: 'TestArrowHumanize' object has no attribute 'now'

======================================================================
ERROR: tests.test_arrow.TestArrowHumanize.test_invalid_locale
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1641, in test_invalid_locale
    arw = arrow.Arrow.fromdatetime(self.datetime)
AttributeError: 'TestArrowHumanize' object has no attribute 'datetime'

======================================================================
ERROR: tests.test_arrow.TestArrowHumanize.test_minute
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1464, in test_minute
    later = self.now.shift(minutes=1)
AttributeError: 'TestArrowHumanize' object has no attribute 'now'

======================================================================
ERROR: tests.test_arrow.TestArrowHumanize.test_minutes
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1474, in test_minutes
    later = self.now.shift(minutes=2)
AttributeError: 'TestArrowHumanize' object has no attribute 'now'

======================================================================
ERROR: tests.test_arrow.TestArrowHumanize.test_month
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1571, in test_month
    later = self.now.shift(months=1)
AttributeError: 'TestArrowHumanize' object has no attribute 'now'

======================================================================
ERROR: tests.test_arrow.TestArrowHumanize.test_months
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1581, in test_months
    later = self.now.shift(months=2)
AttributeError: 'TestArrowHumanize' object has no attribute 'now'

======================================================================
ERROR: tests.test_arrow.TestArrowHumanize.test_multiple_granularity
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1380, in test_multiple_granularity
    assert self.now.humanize(granularity="second") == "just now"
AttributeError: 'TestArrowHumanize' object has no attribute 'now'

======================================================================
ERROR: tests.test_arrow.TestArrowHumanize.test_other
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1634, in test_other
    arw = arrow.Arrow.fromdatetime(self.datetime)
AttributeError: 'TestArrowHumanize' object has no attribute 'datetime'

======================================================================
ERROR: tests.test_arrow.TestArrowHumanize.test_seconds
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1453, in test_seconds
    later = self.now.shift(seconds=10)
AttributeError: 'TestArrowHumanize' object has no attribute 'now'

======================================================================
ERROR: tests.test_arrow.TestArrowHumanize.test_untranslated_granularity
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
TypeError: test_untranslated_granularity() missing 1 required positional argument: 'mocker'

======================================================================
ERROR: tests.test_arrow.TestArrowHumanize.test_week
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1551, in test_week
    later = self.now.shift(weeks=1)
AttributeError: 'TestArrowHumanize' object has no attribute 'now'

======================================================================
ERROR: tests.test_arrow.TestArrowHumanize.test_weeks
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1561, in test_weeks
    later = self.now.shift(weeks=2)
AttributeError: 'TestArrowHumanize' object has no attribute 'now'

======================================================================
ERROR: tests.test_arrow.TestArrowHumanize.test_year
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1592, in test_year
    later = self.now.shift(years=1)
AttributeError: 'TestArrowHumanize' object has no attribute 'now'

======================================================================
ERROR: tests.test_arrow.TestArrowHumanize.test_years
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1602, in test_years
    later = self.now.shift(years=2)
AttributeError: 'TestArrowHumanize' object has no attribute 'now'

======================================================================
ERROR: tests.test_arrow.TestArrowHumanizeTestsWithLocale.test_now
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1676, in test_now
    result = arw.humanize(self.datetime, locale="ru")
AttributeError: 'TestArrowHumanizeTestsWithLocale' object has no attribute 'datetime'

======================================================================
ERROR: tests.test_arrow.TestArrowHumanizeTestsWithLocale.test_seconds
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1683, in test_seconds
    result = arw.humanize(self.datetime, locale="ru")
AttributeError: 'TestArrowHumanizeTestsWithLocale' object has no attribute 'datetime'

======================================================================
ERROR: tests.test_arrow.TestArrowHumanizeTestsWithLocale.test_years
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1691, in test_years
    result = arw.humanize(self.datetime, locale="ru")
AttributeError: 'TestArrowHumanizeTestsWithLocale' object has no attribute 'datetime'

======================================================================
ERROR: tests.test_arrow.TestArrowMath.test_add_other
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 348, in test_add_other
    self.arrow + 1
AttributeError: 'TestArrowMath' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowMath.test_add_timedelta
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 341, in test_add_timedelta
    result = self.arrow.__add__(timedelta(days=1))
AttributeError: 'TestArrowMath' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowMath.test_radd
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 352, in test_radd
    result = self.arrow.__radd__(timedelta(days=1))
AttributeError: 'TestArrowMath' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowMath.test_rsub_datetime
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 381, in test_rsub_datetime
    result = self.arrow.__rsub__(datetime(2012, 12, 21, tzinfo=tz.tzutc()))
AttributeError: 'TestArrowMath' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowMath.test_rsub_other
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 388, in test_rsub_other
    timedelta(days=1) - self.arrow
AttributeError: 'TestArrowMath' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowMath.test_sub_arrow
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 370, in test_sub_arrow
    result = self.arrow.__sub__(arrow.Arrow(2012, 12, 21, tzinfo=tz.tzutc()))
AttributeError: 'TestArrowMath' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowMath.test_sub_datetime
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 364, in test_sub_datetime
    result = self.arrow.__sub__(datetime(2012, 12, 21, tzinfo=tz.tzutc()))
AttributeError: 'TestArrowMath' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowMath.test_sub_other
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 377, in test_sub_other
    self.arrow - object()
AttributeError: 'TestArrowMath' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowMath.test_sub_timedelta
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 358, in test_sub_timedelta
    result = self.arrow.__sub__(timedelta(days=1))
AttributeError: 'TestArrowMath' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowSpan.test_floor
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1268, in test_floor
    floor, ceil = self.arrow.span("month")
AttributeError: 'TestArrowSpan' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowSpan.test_span_day
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1233, in test_span_day
    floor, ceil = self.arrow.span("day")
AttributeError: 'TestArrowSpan' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowSpan.test_span_exclusive_exclusive
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1289, in test_span_exclusive_exclusive
    floor, ceil = self.arrow.span("hour", bounds="()")
AttributeError: 'TestArrowSpan' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowSpan.test_span_exclusive_inclusive
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1282, in test_span_exclusive_inclusive
    floor, ceil = self.arrow.span("hour", bounds="(]")
AttributeError: 'TestArrowSpan' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowSpan.test_span_hour
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1240, in test_span_hour
    floor, ceil = self.arrow.span("hour")
AttributeError: 'TestArrowSpan' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowSpan.test_span_inclusive_inclusive
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1275, in test_span_inclusive_inclusive
    floor, ceil = self.arrow.span("hour", bounds="[]")
AttributeError: 'TestArrowSpan' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowSpan.test_span_microsecond
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1261, in test_span_microsecond
    floor, ceil = self.arrow.span("microsecond")
AttributeError: 'TestArrowSpan' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowSpan.test_span_minute
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1247, in test_span_minute
    floor, ceil = self.arrow.span("minute")
AttributeError: 'TestArrowSpan' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowSpan.test_span_month
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1219, in test_span_month
    floor, ceil = self.arrow.span("month")
AttributeError: 'TestArrowSpan' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowSpan.test_span_quarter
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1198, in test_span_quarter
    floor, ceil = self.arrow.span("quarter")
AttributeError: 'TestArrowSpan' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowSpan.test_span_quarter_count
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1205, in test_span_quarter_count
    floor, ceil = self.arrow.span("quarter", 2)
AttributeError: 'TestArrowSpan' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowSpan.test_span_second
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1254, in test_span_second
    floor, ceil = self.arrow.span("second")
AttributeError: 'TestArrowSpan' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowSpan.test_span_week
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1226, in test_span_week
    floor, ceil = self.arrow.span("week")
AttributeError: 'TestArrowSpan' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowSpan.test_span_year
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1191, in test_span_year
    floor, ceil = self.arrow.span("year")
AttributeError: 'TestArrowSpan' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestArrowSpan.test_span_year_count
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 1212, in test_span_year_count
    floor, ceil = self.arrow.span("year", 2)
AttributeError: 'TestArrowSpan' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestTestArrowRepresentation.test_bare_format
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 204, in test_bare_format
    result = self.arrow.format()
AttributeError: 'TestTestArrowRepresentation' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestTestArrowRepresentation.test_clone
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 216, in test_clone
    result = self.arrow.clone()
AttributeError: 'TestTestArrowRepresentation' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestTestArrowRepresentation.test_format
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 198, in test_format
    result = "{:YYYY-MM-DD}".format(self.arrow)
AttributeError: 'TestTestArrowRepresentation' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestTestArrowRepresentation.test_format_no_format_string
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 210, in test_format_no_format_string
    result = "{}".format(self.arrow)
AttributeError: 'TestTestArrowRepresentation' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestTestArrowRepresentation.test_hash
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 192, in test_hash
    result = self.arrow.__hash__()
AttributeError: 'TestTestArrowRepresentation' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestTestArrowRepresentation.test_repr
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 180, in test_repr
    result = self.arrow.__repr__()
AttributeError: 'TestTestArrowRepresentation' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_arrow.TestTestArrowRepresentation.test_str
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_arrow.py", line 186, in test_str
    result = self.arrow.__str__()
AttributeError: 'TestTestArrowRepresentation' object has no attribute 'arrow'

======================================================================
ERROR: tests.test_factory.TestGet.test_full_kwargs
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 285, in test_full_kwargs
    assert self.factory.get(
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_insufficient_kwargs
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 308, in test_insufficient_kwargs
    self.factory.get(year=2016)
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_kwarg_tzinfo
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 131, in test_kwarg_tzinfo
    self.factory.get(tzinfo=tz.gettz("US/Pacific")), self.expected
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_kwarg_tzinfo_string
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 142, in test_kwarg_tzinfo_string
    assert_datetime_equality(self.factory.get(tzinfo="US/Pacific"), self.expected)
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_locale
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 314, in test_locale
    result = self.factory.get("2010", "YYYY", locale="ja")
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_locale_kwarg_only
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 324, in test_locale_kwarg_only
    res = self.factory.get(locale="ja")
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_locale_with_tzinfo
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 328, in test_locale_with_tzinfo
    res = self.factory.get(locale="ja", tzinfo=tz.gettz("Asia/Tokyo"))
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_no_args
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 18, in test_no_args
    self.factory.get(), datetime.utcnow().replace(tzinfo=tz.tzutc())
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_one_arg_arrow
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 83, in test_one_arg_arrow
    arw = self.factory.utcnow()
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_one_arg_bool
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 192, in test_one_arg_bool
    self.factory.get(False)
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_one_arg_date
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 99, in test_one_arg_date
    assert self.factory.get(d) == dt
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_one_arg_dateparser_datetime
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 119, in test_one_arg_dateparser_datetime
    dt_output = self.factory.get(parsed_date)._datetime.replace(tzinfo=tz.tzutc())
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_one_arg_datetime
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 92, in test_one_arg_datetime
    assert self.factory.get(dt) == dt
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_one_arg_iso_calendar
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 170, in test_one_arg_iso_calendar
    assert self.factory.get(iso) == self.factory.get(dt)
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_one_arg_iso_str
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 152, in test_one_arg_iso_str
    self.factory.get(dt.isoformat()), dt.replace(tzinfo=tz.tzutc())
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_one_arg_none
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 31, in test_one_arg_none
    self.factory.get(None), datetime.utcnow().replace(tzinfo=tz.tzutc())
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_one_arg_other
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 187, in test_one_arg_other
    self.factory.get(object())
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_one_arg_timestamp
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 48, in test_one_arg_timestamp
    assert self.factory.get(int_timestamp) == timestamp_dt
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_one_arg_timestamp_with_tzinfo
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 78, in test_one_arg_timestamp_with_tzinfo
    self.factory.get(timestamp, tzinfo=timezone), timestamp_dt
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_one_arg_tzinfo
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 110, in test_one_arg_tzinfo
    self.factory.get(tz.gettz("US/Pacific")), self.expected
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_struct_time
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 37, in test_struct_time
    self.factory.get(time.gmtime()),
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_three_args
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 281, in test_three_args
    assert self.factory.get(2013, 1, 1) == datetime(2013, 1, 1, tzinfo=tz.tzutc())
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_three_args_with_tzinfo
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 275, in test_three_args_with_tzinfo
    assert self.factory.get(d, timefmt, tzinfo=tz.tzlocal()) == datetime(
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_three_kwargs
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 297, in test_three_kwargs
    assert self.factory.get(year=2016, month=7, day=14) == datetime(
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_timestamp_one_arg_no_arg
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 23, in test_timestamp_one_arg_no_arg
    no_arg = self.factory.get(1406430900).timestamp
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_two_args_date_other
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 229, in test_two_args_date_other
    self.factory.get(date.today(), object())
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_two_args_date_tz_str
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 217, in test_two_args_date_tz_str
    result = self.factory.get(date(2013, 1, 1), "US/Pacific")
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_two_args_date_tzinfo
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 211, in test_two_args_date_tzinfo
    result = self.factory.get(date(2013, 1, 1), tz.gettz("US/Pacific"))
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_two_args_datetime_other
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 224, in test_two_args_datetime_other
    self.factory.get(datetime.utcnow(), object())
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_two_args_datetime_tz_str
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 205, in test_two_args_datetime_tz_str
    result = self.factory.get(datetime(2013, 1, 1), "US/Pacific")
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_two_args_datetime_tzinfo
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 199, in test_two_args_datetime_tzinfo
    result = self.factory.get(datetime(2013, 1, 1), tz.gettz("US/Pacific"))
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_two_args_other
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 268, in test_two_args_other
    self.factory.get(object(), object())
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_two_args_str_list
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 255, in test_two_args_str_list
    result = self.factory.get("2013-01-01", ["MM/DD/YYYY", "YYYY-MM-DD"])
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_two_args_str_str
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 233, in test_two_args_str_str
    result = self.factory.get("2013-01-01", "YYYY-MM-DD")
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_two_args_str_tzinfo
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 239, in test_two_args_str_tzinfo
    result = self.factory.get("2013-01-01", tzinfo=tz.gettz("US/Pacific"))
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_two_args_twitter_format
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 249, in test_two_args_twitter_format
    result = self.factory.get(twitter_date, "ddd MMM DD HH:mm:ss Z YYYY")
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_two_args_unicode_unicode
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 261, in test_two_args_unicode_unicode
    result = self.factory.get(u"2013-01-01", u"YYYY-MM-DD")
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestGet.test_tzinfo_string_kwargs
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 302, in test_tzinfo_string_kwargs
    result = self.factory.get("2019072807", "YYYYMMDDHH", tzinfo="UTC")
AttributeError: 'TestGet' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestNow.test_no_tz
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 346, in test_no_tz
    assert_datetime_equality(self.factory.now(), datetime.now(tz.tzlocal()))
AttributeError: 'TestNow' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestNow.test_tz_str
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 356, in test_tz_str
    assert_datetime_equality(self.factory.now("EST"), datetime.now(tz.gettz("EST")))
AttributeError: 'TestNow' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestNow.test_tzinfo
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 351, in test_tzinfo
    self.factory.now(tz.gettz("EST")), datetime.now(tz.gettz("EST"))
AttributeError: 'TestNow' object has no attribute 'factory'

======================================================================
ERROR: tests.test_factory.TestUtcNow.test_utcnow
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_factory.py", line 337, in test_utcnow
    self.factory.utcnow()._datetime,
AttributeError: 'TestUtcNow' object has no attribute 'factory'

======================================================================
ERROR: tests.test_formatter.TestDateTimeFormatterFormatToken.test_am_pm
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_formatter.py", line 138, in test_am_pm
    assert self.formatter._format_token(dt, "a") == "am"
AttributeError: 'TestDateTimeFormatterFormatToken' object has no attribute 'formatter'

======================================================================
ERROR: tests.test_formatter.TestDateTimeFormatterFormatToken.test_day
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_formatter.py", line 38, in test_day
    assert self.formatter._format_token(dt, "DDDD") == "032"
AttributeError: 'TestDateTimeFormatterFormatToken' object has no attribute 'formatter'

======================================================================
ERROR: tests.test_formatter.TestDateTimeFormatterFormatToken.test_escape
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_formatter.py", line 161, in test_escape
    self.formatter.format(
AttributeError: 'TestDateTimeFormatterFormatToken' object has no attribute 'formatter'

======================================================================
ERROR: tests.test_formatter.TestDateTimeFormatterFormatToken.test_format
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_formatter.py", line 17, in test_format
    result = self.formatter.format(dt, "MM-DD-YYYY hh:mm:ss a")
AttributeError: 'TestDateTimeFormatterFormatToken' object has no attribute 'formatter'

======================================================================
ERROR: tests.test_formatter.TestDateTimeFormatterFormatToken.test_hour
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_formatter.py", line 51, in test_hour
    assert self.formatter._format_token(dt, "HH") == "02"
AttributeError: 'TestDateTimeFormatterFormatToken' object has no attribute 'formatter'

======================================================================
ERROR: tests.test_formatter.TestDateTimeFormatterFormatToken.test_minute
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_formatter.py", line 74, in test_minute
    assert self.formatter._format_token(dt, "mm") == "01"
AttributeError: 'TestDateTimeFormatterFormatToken' object has no attribute 'formatter'

======================================================================
ERROR: tests.test_formatter.TestDateTimeFormatterFormatToken.test_month
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_formatter.py", line 30, in test_month
    assert self.formatter._format_token(dt, "MMMM") == "January"
AttributeError: 'TestDateTimeFormatterFormatToken' object has no attribute 'formatter'

======================================================================
ERROR: tests.test_formatter.TestDateTimeFormatterFormatToken.test_nonsense
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_formatter.py", line 155, in test_nonsense
    assert self.formatter._format_token(dt, None) is None
AttributeError: 'TestDateTimeFormatterFormatToken' object has no attribute 'formatter'

======================================================================
ERROR: tests.test_formatter.TestDateTimeFormatterFormatToken.test_second
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_formatter.py", line 80, in test_second
    assert self.formatter._format_token(dt, "ss") == "01"
AttributeError: 'TestDateTimeFormatterFormatToken' object has no attribute 'formatter'

======================================================================
ERROR: tests.test_formatter.TestDateTimeFormatterFormatToken.test_sub_second
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_formatter.py", line 86, in test_sub_second
    assert self.formatter._format_token(dt, "SSSSSS") == "123456"
AttributeError: 'TestDateTimeFormatterFormatToken' object has no attribute 'formatter'

======================================================================
ERROR: tests.test_formatter.TestDateTimeFormatterFormatToken.test_timestamp
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_formatter.py", line 106, in test_timestamp
    assert self.formatter._format_token(dt, "X") == expected
AttributeError: 'TestDateTimeFormatterFormatToken' object has no attribute 'formatter'

======================================================================
ERROR: tests.test_formatter.TestDateTimeFormatterFormatToken.test_timezone
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_formatter.py", line 117, in test_timezone
    result = self.formatter._format_token(dt, "ZZ")
AttributeError: 'TestDateTimeFormatterFormatToken' object has no attribute 'formatter'

======================================================================
ERROR: tests.test_formatter.TestDateTimeFormatterFormatToken.test_timezone_formatter
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_formatter.py", line 132, in test_timezone_formatter
    result = self.formatter._format_token(dt, "ZZZ")
AttributeError: 'TestDateTimeFormatterFormatToken' object has no attribute 'formatter'

======================================================================
ERROR: tests.test_formatter.TestDateTimeFormatterFormatToken.test_week
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_formatter.py", line 147, in test_week
    assert self.formatter._format_token(dt, "W") == "2017-W20-5"
AttributeError: 'TestDateTimeFormatterFormatToken' object has no attribute 'formatter'

======================================================================
ERROR: tests.test_formatter.TestDateTimeFormatterFormatToken.test_year
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_formatter.py", line 24, in test_year
    assert self.formatter._format_token(dt, "YYYY") == "2013"
AttributeError: 'TestDateTimeFormatterFormatToken' object has no attribute 'formatter'

======================================================================
ERROR: tests.test_locales.TestArabicLocale.test_timeframes
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 639, in test_timeframes
    assert self.locale._format_timeframe("minute", 1) == "دقيقة"
AttributeError: 'TestArabicLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestBengaliLocale.test_ordinal_number
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 587, in test_ordinal_number
    assert self.locale._ordinal_number(0) == "0তম"
AttributeError: 'TestBengaliLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestBrazilianPortugueseLocale.test_format_timeframe
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 812, in test_format_timeframe
    assert self.locale._format_timeframe("now", 0) == "agora"
AttributeError: 'TestBrazilianPortugueseLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestBulgarianLocale.test_plurals2
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 401, in test_plurals2
    assert self.locale._format_timeframe("hours", 0) == "0 часа"
AttributeError: 'TestBulgarianLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestChineseTWLocale.test_format_timeframe
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 850, in test_format_timeframe
    assert self.locale._format_timeframe("now", 0) == "剛才"
AttributeError: 'TestChineseTWLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestCzechLocale.test_format_relative_future
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 362, in test_format_relative_future
    result = self.locale._format_relative("hodinu", "hour", 1)
AttributeError: 'TestCzechLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestCzechLocale.test_format_relative_now
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 357, in test_format_relative_now
    result = self.locale._format_relative("Teď", "now", 0)
AttributeError: 'TestCzechLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestCzechLocale.test_format_relative_past
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 367, in test_format_relative_past
    result = self.locale._format_relative("hodinou", "hour", -1)
AttributeError: 'TestCzechLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestCzechLocale.test_format_timeframe
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 348, in test_format_timeframe
    assert self.locale._format_timeframe("hours", 2) == "2 hodiny"
AttributeError: 'TestCzechLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestEnglishLocale.test_describe
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 80, in test_describe
    assert self.locale.describe("now", only_distance=True) == "instantly"
AttributeError: 'TestEnglishLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestEnglishLocale.test_format_relative_future
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 102, in test_format_relative_future
    result = self.locale._format_relative("an hour", "hour", -1)
AttributeError: 'TestEnglishLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestEnglishLocale.test_format_relative_now
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 90, in test_format_relative_now
    result = self.locale._format_relative("just now", "now", 0)
AttributeError: 'TestEnglishLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestEnglishLocale.test_format_relative_past
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 96, in test_format_relative_past
    result = self.locale._format_relative("an hour", "hour", 1)
AttributeError: 'TestEnglishLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestEnglishLocale.test_format_timeframe
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 85, in test_format_timeframe
    assert self.locale._format_timeframe("hours", 2) == "2 hours"
AttributeError: 'TestEnglishLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestEnglishLocale.test_meridian_invalid_token
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 138, in test_meridian_invalid_token
    assert self.locale.meridian(7, None) is None
AttributeError: 'TestEnglishLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestEnglishLocale.test_ordinal_number
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 107, in test_ordinal_number
    assert self.locale.ordinal_number(0) == "0th"
AttributeError: 'TestEnglishLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestEsperantoLocale.test_format_timeframe
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 550, in test_format_timeframe
    assert self.locale._format_timeframe("hours", 2) == "2 horoj"
AttributeError: 'TestEsperantoLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestEsperantoLocale.test_ordinal_number
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 556, in test_ordinal_number
    assert self.locale.ordinal_number(1) == "1a"
AttributeError: 'TestEsperantoLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestEstonianLocale.test_format_timeframe
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 750, in test_format_timeframe
    assert self.locale._format_timeframe("now", 0) == "just nüüd"
AttributeError: 'TestEstonianLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestFinnishLocale.test_format_relative_future
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 506, in test_format_relative_future
    result = self.locale._format_relative(["tunti", "tunnin"], "hour", -1)
AttributeError: 'TestFinnishLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestFinnishLocale.test_format_relative_now
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 498, in test_format_relative_now
    result = self.locale._format_relative(["juuri nyt", "juuri nyt"], "now", 0)
AttributeError: 'TestFinnishLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestFinnishLocale.test_format_relative_past
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 502, in test_format_relative_past
    result = self.locale._format_relative(["tunti", "tunnin"], "hour", 1)
AttributeError: 'TestFinnishLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestFinnishLocale.test_format_timeframe
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 494, in test_format_timeframe
    assert self.locale._format_timeframe("hours", 2) == ("2 tuntia", "2 tunnin")
AttributeError: 'TestFinnishLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestFinnishLocale.test_ordinal_number
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 510, in test_ordinal_number
    assert self.locale.ordinal_number(1) == "1."
AttributeError: 'TestFinnishLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestFrenchLocale.test_ordinal_number
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 205, in test_ordinal_number
    assert self.locale.ordinal_number(1) == "1er"
AttributeError: 'TestFrenchLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestGermanLocale.test_define
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 519, in test_define
    assert self.locale.describe("minute", only_distance=True) == "eine Minute"
AttributeError: 'TestGermanLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestGermanLocale.test_ordinal_number
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 516, in test_ordinal_number
    assert self.locale.ordinal_number(1) == "1."
AttributeError: 'TestGermanLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestGermanLocale.test_weekday
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 534, in test_weekday
    assert self.locale.day_name(dt.isoweekday()) == "Samstag"
AttributeError: 'TestGermanLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestHebrewLocale.test_couple_of_timeframe
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 451, in test_couple_of_timeframe
    assert self.locale._format_timeframe("hours", 2) == "שעתיים"
AttributeError: 'TestHebrewLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestHindiLocale.test_format_relative_future
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 340, in test_format_relative_future
    result = self.locale._format_relative("एक घंटा", "hour", -1)
AttributeError: 'TestHindiLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestHindiLocale.test_format_relative_now
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 330, in test_format_relative_now
    result = self.locale._format_relative("अभी", "now", 0)
AttributeError: 'TestHindiLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestHindiLocale.test_format_relative_past
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 335, in test_format_relative_past
    result = self.locale._format_relative("एक घंटा", "hour", 1)
AttributeError: 'TestHindiLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestHindiLocale.test_format_timeframe
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 325, in test_format_timeframe
    assert self.locale._format_timeframe("hours", 2) == "2 घंटे"
AttributeError: 'TestHindiLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestHongKongLocale.test_format_timeframe
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 830, in test_format_timeframe
    assert self.locale._format_timeframe("now", 0) == "剛才"
AttributeError: 'TestHongKongLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestHungarianLocale.test_format_timeframe
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 541, in test_format_timeframe
    assert self.locale._format_timeframe("hours", 2) == "2 óra"
AttributeError: 'TestHungarianLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestIcelandicLocale.test_format_timeframe
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 289, in test_format_timeframe
    assert self.locale._format_timeframe("minute", -1) == "einni mínútu"
AttributeError: 'TestIcelandicLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestIndonesianLocale.test_format_relative_future
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 708, in test_format_relative_future
    assert self.locale._format_relative("1 jam", "hour", -1) == "1 jam yang lalu"
AttributeError: 'TestIndonesianLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestIndonesianLocale.test_format_relative_now
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 701, in test_format_relative_now
    assert self.locale._format_relative("baru saja", "now", 0) == "baru saja"
AttributeError: 'TestIndonesianLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestIndonesianLocale.test_format_relative_past
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 704, in test_format_relative_past
    assert self.locale._format_relative("1 jam", "hour", 1) == "dalam 1 jam"
AttributeError: 'TestIndonesianLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestIndonesianLocale.test_timeframes
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 689, in test_timeframes
    assert self.locale._format_timeframe("hours", 2) == "2 jam"
AttributeError: 'TestIndonesianLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestItalianLocale.test_ordinal_number
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 146, in test_ordinal_number
    assert self.locale.ordinal_number(1) == "1º"
AttributeError: 'TestItalianLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestLocaleValidation.test_locale_validation
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 15, in test_locale_validation
    for _, locale_cls in self.locales.items():
AttributeError: 'TestLocaleValidation' object has no attribute 'locales'

======================================================================
ERROR: tests.test_locales.TestMacedonianLocale.test_plurals_mk
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 425, in test_plurals_mk
    assert self.locale._format_relative("сега", "now", 0) == "сега"
AttributeError: 'TestMacedonianLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestMalayalamLocale.test_format_relative_future
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 317, in test_format_relative_future
    result = self.locale._format_relative("ഒരു മണിക്കൂർ", "hour", -1)
AttributeError: 'TestMalayalamLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestMalayalamLocale.test_format_relative_now
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 306, in test_format_relative_now
    result = self.locale._format_relative("ഇപ്പോൾ", "now", 0)
AttributeError: 'TestMalayalamLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestMalayalamLocale.test_format_relative_past
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 312, in test_format_relative_past
    result = self.locale._format_relative("ഒരു മണിക്കൂർ", "hour", 1)
AttributeError: 'TestMalayalamLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestMalayalamLocale.test_format_timeframe
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 301, in test_format_timeframe
    assert self.locale._format_timeframe("hours", 2) == "2 മണിക്കൂർ"
AttributeError: 'TestMalayalamLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestMarathiLocale.test_dateCoreFunctionality
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 465, in test_dateCoreFunctionality
    assert self.locale.month_name(dt.month) == "एप्रिल"
AttributeError: 'TestMarathiLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestMarathiLocale.test_format_relative_future
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 483, in test_format_relative_future
    result = self.locale._format_relative("एक तास", "hour", -1)
AttributeError: 'TestMarathiLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestMarathiLocale.test_format_relative_now
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 475, in test_format_relative_now
    result = self.locale._format_relative("सद्य", "now", 0)
AttributeError: 'TestMarathiLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestMarathiLocale.test_format_relative_past
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 479, in test_format_relative_past
    result = self.locale._format_relative("एक तास", "hour", 1)
AttributeError: 'TestMarathiLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestMarathiLocale.test_format_timeframe
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 471, in test_format_timeframe
    assert self.locale._format_timeframe("hours", 2) == "2 तास"
AttributeError: 'TestMarathiLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestMarathiLocale.test_ordinal_number
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 488, in test_ordinal_number
    assert self.locale.ordinal_number(1) == "1"
AttributeError: 'TestMarathiLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestModule.test_get_locale
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
TypeError: test_get_locale() missing 1 required positional argument: 'mocker'

======================================================================
ERROR: tests.test_locales.TestModule.test_get_locale_by_class_name
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
TypeError: test_get_locale_by_class_name() missing 1 required positional argument: 'mocker'

======================================================================
ERROR: tests.test_locales.TestNepaliLocale.test_format_relative_future
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 678, in test_format_relative_future
    result = self.locale._format_relative("एक घण्टा", "hour", 1)
AttributeError: 'TestNepaliLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestNepaliLocale.test_format_relative_now
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 674, in test_format_relative_now
    result = self.locale._format_relative("अहिले", "now", 0)
AttributeError: 'TestNepaliLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestNepaliLocale.test_format_relative_past
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 682, in test_format_relative_past
    result = self.locale._format_relative("एक घण्टा", "hour", -1)
AttributeError: 'TestNepaliLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestNepaliLocale.test_format_timeframe
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 670, in test_format_timeframe
    assert self.locale._format_timeframe("hours", 3) == "3 घण्टा"
AttributeError: 'TestNepaliLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestPolishLocale.test_plurals
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 236, in test_plurals
    assert self.locale._format_timeframe("seconds", 0) == "0 sekund"
AttributeError: 'TestPolishLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestPortugueseLocale.test_format_timeframe
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 794, in test_format_timeframe
    assert self.locale._format_timeframe("now", 0) == "agora"
AttributeError: 'TestPortugueseLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestRomanianLocale.test_relative_timeframes
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 615, in test_relative_timeframes
    assert self.locale._format_relative("acum", "now", 0) == "acum"
AttributeError: 'TestRomanianLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestRomanianLocale.test_timeframes
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 603, in test_timeframes
    assert self.locale._format_timeframe("hours", 2) == "2 ore"
AttributeError: 'TestRomanianLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestRussianLocale.test_plurals2
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 212, in test_plurals2
    assert self.locale._format_timeframe("hours", 0) == "0 часов"
AttributeError: 'TestRussianLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestSlovakLocale.test_format_relative_future
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 389, in test_format_relative_future
    result = self.locale._format_relative("hodinu", "hour", 1)
AttributeError: 'TestSlovakLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestSlovakLocale.test_format_relative_now
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 384, in test_format_relative_now
    result = self.locale._format_relative("Teraz", "now", 0)
AttributeError: 'TestSlovakLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestSlovakLocale.test_format_relative_past
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 394, in test_format_relative_past
    result = self.locale._format_relative("hodinou", "hour", -1)
AttributeError: 'TestSlovakLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestSlovakLocale.test_format_timeframe
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 375, in test_format_timeframe
    assert self.locale._format_timeframe("hours", 2) == "2 hodiny"
AttributeError: 'TestSlovakLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestSpanishLocale.test_format_timeframe
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 155, in test_format_timeframe
    assert self.locale._format_timeframe("now", 0) == "ahora"
AttributeError: 'TestSpanishLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestSpanishLocale.test_ordinal_number
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 152, in test_ordinal_number
    assert self.locale.ordinal_number(1) == "1º"
AttributeError: 'TestSpanishLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestTagalogLocale.test_format_relative_future
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 733, in test_format_relative_future
    assert self.locale._format_relative("3 oras", "hour", -3) == "nakaraang 3 oras"
AttributeError: 'TestTagalogLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestTagalogLocale.test_format_relative_now
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 727, in test_format_relative_now
    assert self.locale._format_relative("ngayon lang", "now", 0) == "ngayon lang"
AttributeError: 'TestTagalogLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestTagalogLocale.test_format_relative_past
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 730, in test_format_relative_past
    assert self.locale._format_relative("2 oras", "hour", 2) == "2 oras mula ngayon"
AttributeError: 'TestTagalogLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestTagalogLocale.test_format_timeframe
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 715, in test_format_timeframe
    assert self.locale._format_timeframe("minute", 1) == "isang minuto"
AttributeError: 'TestTagalogLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestTagalogLocale.test_ordinal_number
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 736, in test_ordinal_number
    assert self.locale.ordinal_number(0) == "ika-0"
AttributeError: 'TestTagalogLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestThaiLocale.test_format_relative_future
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 580, in test_format_relative_future
    result = self.locale._format_relative("1 ชั่วโมง", "hour", -1)
AttributeError: 'TestThaiLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestThaiLocale.test_format_relative_now
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 568, in test_format_relative_now
    result = self.locale._format_relative("ขณะนี้", "now", 0)
AttributeError: 'TestThaiLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestThaiLocale.test_format_relative_past
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 572, in test_format_relative_past
    result = self.locale._format_relative("1 ชั่วโมง", "hour", 1)
AttributeError: 'TestThaiLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestThaiLocale.test_year_abbreviation
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 565, in test_year_abbreviation
    assert self.locale.year_abbreviation(2015) == "58"
AttributeError: 'TestThaiLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_locales.TestThaiLocale.test_year_full
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_locales.py", line 562, in test_year_full
    assert self.locale.year_full(2015) == "2558"
AttributeError: 'TestThaiLocale' object has no attribute 'locale'

======================================================================
ERROR: tests.test_parser.TestDateTimeParser.test_YY_and_YYYY_format_list
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 142, in test_YY_and_YYYY_format_list
    assert self.parser.parse("15/01/19", ["DD/MM/YY", "DD/MM/YYYY"]) == datetime(
AttributeError: 'TestDateTimeParser' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParser.test_parse_multiformat
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
TypeError: test_parse_multiformat() missing 1 required positional argument: 'mocker'

======================================================================
ERROR: tests.test_parser.TestDateTimeParser.test_parse_multiformat_all_fail
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
TypeError: test_parse_multiformat_all_fail() missing 1 required positional argument: 'mocker'

======================================================================
ERROR: tests.test_parser.TestDateTimeParser.test_parse_multiformat_unself_expected_fail
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
TypeError: test_parse_multiformat_unself_expected_fail() missing 1 required positional argument: 'mocker'

======================================================================
ERROR: tests.test_parser.TestDateTimeParser.test_parse_token_invalid_meridians
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 83, in test_parse_token_invalid_meridians
    self.parser._parse_token("A", "a..m", parts)
AttributeError: 'TestDateTimeParser' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParser.test_parse_token_nonsense
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 78, in test_parse_token_nonsense
    self.parser._parse_token("NONSENSE", "1900", parts)
AttributeError: 'TestDateTimeParser' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParser.test_parser_1_line_caching
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
TypeError: test_parser_1_line_caching() missing 1 required positional argument: 'mocker'

======================================================================
ERROR: tests.test_parser.TestDateTimeParser.test_parser_multiple_line_caching
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
TypeError: test_parser_multiple_line_caching() missing 1 required positional argument: 'mocker'

======================================================================
ERROR: tests.test_parser.TestDateTimeParser.test_parser_no_caching
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
TypeError: test_parser_no_caching() missing 1 required positional argument: 'mocker'

======================================================================
ERROR: tests.test_parser.TestDateTimeParser.test_timestamp_format_list
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 159, in test_timestamp_format_list
    assert self.parser.parse(
AttributeError: 'TestDateTimeParser' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserISO.test_W
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 994, in test_W
    assert self.parser.parse_iso("2011-W05-4") == datetime(2011, 2, 3)
AttributeError: 'TestDateTimeParserISO' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserISO.test_YYYY
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 808, in test_YYYY
    assert self.parser.parse_iso("2013") == datetime(2013, 1, 1)
AttributeError: 'TestDateTimeParserISO' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserISO.test_YYYY_DDDD
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 811, in test_YYYY_DDDD
    assert self.parser.parse_iso("1998-136") == datetime(1998, 5, 16)
AttributeError: 'TestDateTimeParserISO' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserISO.test_YYYY_DDDD_HH_mm_ssZ
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 836, in test_YYYY_DDDD_HH_mm_ssZ
    assert self.parser.parse_iso("2013-036 04:05:06+01:00") == datetime(
AttributeError: 'TestDateTimeParserISO' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserISO.test_YYYY_MM
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 851, in test_YYYY_MM
    assert self.parser.parse_iso(separator.join(("2013", "02"))) == datetime(
AttributeError: 'TestDateTimeParserISO' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserISO.test_YYYY_MM_DD
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 858, in test_YYYY_MM_DD
    assert self.parser.parse_iso(
AttributeError: 'TestDateTimeParserISO' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserISO.test_YYYY_MM_DDDD
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 846, in test_YYYY_MM_DDDD
    self.parser.parse_iso("2014-05-125")
AttributeError: 'TestDateTimeParserISO' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserISO.test_YYYY_MM_DDTHH
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 874, in test_YYYY_MM_DDTHH
    assert self.parser.parse_iso("2013-02-03T04") == datetime(2013, 2, 3, 4)
AttributeError: 'TestDateTimeParserISO' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserISO.test_YYYY_MM_DDTHHZ
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 878, in test_YYYY_MM_DDTHHZ
    assert self.parser.parse_iso("2013-02-03T04+01:00") == datetime(
AttributeError: 'TestDateTimeParserISO' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserISO.test_YYYY_MM_DDTHH_mm
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 870, in test_YYYY_MM_DDTHH_mm
    assert self.parser.parse_iso("2013-02-03T04:05") == datetime(2013, 2, 3, 4, 5)
AttributeError: 'TestDateTimeParserISO' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserISO.test_YYYY_MM_DDTHH_mmZ
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 864, in test_YYYY_MM_DDTHH_mmZ
    assert self.parser.parse_iso("2013-02-03T04:05+01:00") == datetime(
AttributeError: 'TestDateTimeParserISO' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserISO.test_YYYY_MM_DDTHH_mm_ss
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 890, in test_YYYY_MM_DDTHH_mm_ss
    assert self.parser.parse_iso("2013-02-03T04:05:06") == datetime(
AttributeError: 'TestDateTimeParserISO' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserISO.test_YYYY_MM_DDTHH_mm_ssZ
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 884, in test_YYYY_MM_DDTHH_mm_ssZ
    assert self.parser.parse_iso("2013-02-03T04:05:06+01:00") == datetime(
AttributeError: 'TestDateTimeParserISO' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserISO.test_YYYY_MM_DDTHH_mm_ss_S
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 933, in test_YYYY_MM_DDTHH_mm_ss_S
    assert self.parser.parse_iso("2013-02-03T04:05:06.7") == datetime(
AttributeError: 'TestDateTimeParserISO' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserISO.test_YYYY_MM_DDTHH_mm_ss_SZ
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 968, in test_YYYY_MM_DDTHH_mm_ss_SZ
    assert self.parser.parse_iso("2013-02-03T04:05:06.7+01:00") == datetime(
AttributeError: 'TestDateTimeParserISO' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserISO.test_YYYY_MM_DD_HH
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 906, in test_YYYY_MM_DD_HH
    assert self.parser.parse_iso("2013-02-03 04") == datetime(2013, 2, 3, 4)
AttributeError: 'TestDateTimeParserISO' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserISO.test_YYYY_MM_DD_HH_mm
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 902, in test_YYYY_MM_DD_HH_mm
    assert self.parser.parse_iso("2013-02-03 04:05") == datetime(2013, 2, 3, 4, 5)
AttributeError: 'TestDateTimeParserISO' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserISO.test_YYYY_MM_DD_HH_mmZ
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 896, in test_YYYY_MM_DD_HH_mmZ
    assert self.parser.parse_iso("2013-02-03 04:05+01:00") == datetime(
AttributeError: 'TestDateTimeParserISO' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserISO.test_YYYY_MM_DD_HH_mm_ss
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 927, in test_YYYY_MM_DD_HH_mm_ss
    assert self.parser.parse_iso("2013-02-03 04:05:06") == datetime(
AttributeError: 'TestDateTimeParserISO' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserISO.test_YYYY_MM_DD_HH_mm_ssZ
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 921, in test_YYYY_MM_DD_HH_mm_ssZ
    assert self.parser.parse_iso("2013-02-03 04:05:06+01:00") == datetime(
AttributeError: 'TestDateTimeParserISO' object has no attribute 'parser'

======================================================================
ERROR: Regression tests for parsing output from GNU date.
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 1055, in test_gnu_date
    assert self.parser.parse_iso("2016-11-16T09:46:30,895636557-0800") == datetime(
AttributeError: 'TestDateTimeParserISO' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserISO.test_invalid_Z
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 1009, in test_invalid_Z
    self.parser.parse_iso("2013-02-03T04:05:06.78912z")
AttributeError: 'TestDateTimeParserISO' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserISO.test_invalid_time
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 911, in test_invalid_time
    self.parser.parse_iso("2013-02-03T")
AttributeError: 'TestDateTimeParserISO' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserISO.test_iso8601_basic_format
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 1133, in test_iso8601_basic_format
    assert self.parser.parse_iso("20180517") == datetime(2018, 5, 17)
AttributeError: 'TestDateTimeParserISO' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserISO.test_isoformat
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 1068, in test_isoformat
    assert self.parser.parse_iso(dt.isoformat()) == dt
AttributeError: 'TestDateTimeParserISO' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserISO.test_midnight_end_day
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 1176, in test_midnight_end_day
    assert self.parser.parse_iso("2019-10-30T24:00:00") == datetime(
AttributeError: 'TestDateTimeParserISO' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserISO.test_parse_iso_with_extra_words_at_start_and_end_invalid
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 1130, in test_parse_iso_with_extra_words_at_start_and_end_invalid
    self.parser.parse_iso(ti)
AttributeError: 'TestDateTimeParserISO' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserISO.test_parse_iso_with_leading_and_trailing_whitespace
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 1073, in test_parse_iso_with_leading_and_trailing_whitespace
    self.parser.parse_iso(datetime_string)
AttributeError: 'TestDateTimeParserISO' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserISO.test_parse_subsecond
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 1031, in test_parse_subsecond
    assert self.parser.parse_iso("2013-01-01 12:30:45.9") == self.expected
AttributeError: 'TestDateTimeParserISO' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserMeridians.test_meridians_capitalized
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 1299, in test_meridians_capitalized
    assert self.parser.parse("2013-01-01 5AM", "YYYY-MM-DD hA") == datetime(
AttributeError: 'TestDateTimeParserMeridians' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserMeridians.test_meridians_lowercase
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 1290, in test_meridians_lowercase
    assert self.parser.parse("2013-01-01 5am", "YYYY-MM-DD ha") == datetime(
AttributeError: 'TestDateTimeParserMeridians' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserMonthName.test_month_alllower
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 1272, in test_month_alllower
    assert self.parser.parse("2013-january-01", "YYYY-MMMM-DD") == datetime(
AttributeError: 'TestDateTimeParserMonthName' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserMonthName.test_month_allupper
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 1266, in test_month_allupper
    assert self.parser.parse("2013-JANUARY-01", "YYYY-MMMM-DD") == datetime(
AttributeError: 'TestDateTimeParserMonthName' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserMonthName.test_month_capitalized
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 1260, in test_month_capitalized
    assert self.parser.parse("2013-January-01", "YYYY-MMMM-DD") == datetime(
AttributeError: 'TestDateTimeParserMonthName' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserMonthName.test_shortmonth_alllower
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 1256, in test_shortmonth_alllower
    assert self.parser.parse("2013-jan-01", "YYYY-MMM-DD") == datetime(2013, 1, 1)
AttributeError: 'TestDateTimeParserMonthName' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserMonthName.test_shortmonth_allupper
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 1252, in test_shortmonth_allupper
    assert self.parser.parse("2013-JAN-01", "YYYY-MMM-DD") == datetime(2013, 1, 1)
AttributeError: 'TestDateTimeParserMonthName' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserMonthName.test_shortmonth_capitalized
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 1248, in test_shortmonth_capitalized
    assert self.parser.parse("2013-Jan-01", "YYYY-MMM-DD") == datetime(2013, 1, 1)
AttributeError: 'TestDateTimeParserMonthName' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserParse.test_parse_DDDD_only
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 581, in test_parse_DDDD_only
    self.parser.parse("145", "DDDD")
AttributeError: 'TestDateTimeParserParse' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserParse.test_parse_DDD_only
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 577, in test_parse_DDD_only
    self.parser.parse("5", "DDD")
AttributeError: 'TestDateTimeParserParse' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserParse.test_parse_HH_24
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 584, in test_parse_HH_24
    assert self.parser.parse(
AttributeError: 'TestDateTimeParserParse' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserParse.test_parse_W
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 620, in test_parse_W
    assert self.parser.parse("2011-W05-4", "W") == datetime(2011, 2, 3)
AttributeError: 'TestDateTimeParserParse' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserParse.test_parse_YYYY_DDD
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 562, in test_parse_YYYY_DDD
    assert self.parser.parse("1998-6", "YYYY-DDD") == datetime(1998, 1, 6)
AttributeError: 'TestDateTimeParserParse' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserParse.test_parse_YYYY_DDDD
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 554, in test_parse_YYYY_DDDD
    assert self.parser.parse("1998-136", "YYYY-DDDD") == datetime(1998, 5, 16)
AttributeError: 'TestDateTimeParserParse' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserParse.test_parse_YYYY_MM_DDDD
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 572, in test_parse_YYYY_MM_DDDD
    self.parser.parse("2015-01-009", "YYYY-MM-DDDD")
AttributeError: 'TestDateTimeParserParse' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserParse.test_parse_expanded_timestamp
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 285, in test_parse_expanded_timestamp
    assert self.parser.parse("{:d}".format(int(timestamp)), "x") == self.expected
AttributeError: 'TestDateTimeParserParse' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserParse.test_parse_list
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
TypeError: test_parse_list() missing 1 required positional argument: 'mocker'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserParse.test_parse_long_year
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 448, in test_parse_long_year
    self.parser.parse("09 January 123456789101112", "DD MMMM YYYY")
AttributeError: 'TestDateTimeParserParse' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserParse.test_parse_names
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 305, in test_parse_names
    assert self.parser.parse("January 1, 2012", "MMMM D, YYYY") == self.expected
AttributeError: 'TestDateTimeParserParse' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserParse.test_parse_numbers
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 206, in test_parse_numbers
    self.parser.parse("2012-01-01 12:05:10", "YYYY-MM-DD HH:mm:ss")
AttributeError: 'TestDateTimeParserParse' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserParse.test_parse_parse_no_match
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 195, in test_parse_parse_no_match
    self.parser.parse("01-01", "YYYY-MM-DD")
AttributeError: 'TestDateTimeParserParse' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserParse.test_parse_pm
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 311, in test_parse_pm
    assert self.parser.parse("1 pm", "H a") == self.expected
AttributeError: 'TestDateTimeParserParse' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserParse.test_parse_separators
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 200, in test_parse_separators
    self.parser.parse("1403549231", "YYYY-MM-DD")
AttributeError: 'TestDateTimeParserParse' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserParse.test_parse_subsecond
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 359, in test_parse_subsecond
    self.parser.parse("2013-01-01 12:30:45.9", "YYYY-MM-DD HH:mm:ss.S")
AttributeError: 'TestDateTimeParserParse' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserParse.test_parse_subsecond_rounding
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 401, in test_parse_subsecond_rounding
    assert self.parser.parse(string, datetime_format) == self.expected
AttributeError: 'TestDateTimeParserParse' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserParse.test_parse_subsecond_rounding_overflow
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 426, in test_parse_subsecond_rounding_overflow
    assert self.parser.parse(string, datetime_format) == self.expected
AttributeError: 'TestDateTimeParserParse' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserParse.test_parse_timestamp
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 222, in test_parse_timestamp
    assert self.parser.parse("{:d}".format(int_timestamp), "X") == self.expected
AttributeError: 'TestDateTimeParserParse' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserParse.test_parse_tz_hours_only
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 328, in test_parse_tz_hours_only
    parsed = self.parser.parse("2025-10-17 05:30:10+00", "YYYY-MM-DD HH:mm:ssZ")
AttributeError: 'TestDateTimeParserParse' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserParse.test_parse_tz_name_zzz
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 340, in test_parse_tz_name_zzz
    self.parser.parse("2013-01-01 %s" % tz_name, "YYYY-MM-DD ZZZ")
AttributeError: 'TestDateTimeParserParse' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserParse.test_parse_tz_zz
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 334, in test_parse_tz_zz
    assert self.parser.parse("2013-01-01 -07:00", "YYYY-MM-DD ZZ") == self.expected
AttributeError: 'TestDateTimeParserParse' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserParse.test_parse_unrecognized_token
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
TypeError: test_parse_unrecognized_token() missing 1 required positional argument: 'mocker'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserParse.test_parse_with_extra_words_at_start_and_end_invalid
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 471, in test_parse_with_extra_words_at_start_and_end_invalid
    self.parser.parse(pair[0], pair[1])
AttributeError: 'TestDateTimeParserParse' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserParse.test_parse_with_extra_words_at_start_and_end_valid
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 479, in test_parse_with_extra_words_at_start_and_end_valid
    assert self.parser.parse("blah 2016 blah", "YYYY") == datetime(2016, 1, 1)
AttributeError: 'TestDateTimeParserParse' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserParse.test_parse_with_leading_and_trailing_whitespace
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 539, in test_parse_with_leading_and_trailing_whitespace
    assert self.parser.parse("      2016", "YYYY") == datetime(2016, 1, 1)
AttributeError: 'TestDateTimeParserParse' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserParse.test_parse_with_punctuation_fences
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 517, in test_parse_with_punctuation_fences
    assert self.parser.parse(
AttributeError: 'TestDateTimeParserParse' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserParse.test_parse_year_two_digit
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 214, in test_parse_year_two_digit
    self.parser.parse("79-01-01 12:05:10", "YY-MM-DD HH:mm:ss") == self.expected
AttributeError: 'TestDateTimeParserParse' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserRegex.test_format_am_pm
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 699, in test_format_am_pm
    assert self.format_regex.findall("A-a") == ["A", "a"]
AttributeError: 'TestDateTimeParserRegex' object has no attribute 'format_regex'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserRegex.test_format_day
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 668, in test_format_day
    assert self.format_regex.findall("DDDD-DDD-DD-D") == ["DDDD", "DDD", "DD", "D"]
AttributeError: 'TestDateTimeParserRegex' object has no attribute 'format_regex'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserRegex.test_format_hour
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 672, in test_format_hour
    assert self.format_regex.findall("HH-H-hh-h") == ["HH", "H", "hh", "h"]
AttributeError: 'TestDateTimeParserRegex' object has no attribute 'format_regex'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserRegex.test_format_minute
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 676, in test_format_minute
    assert self.format_regex.findall("mm-m") == ["mm", "m"]
AttributeError: 'TestDateTimeParserRegex' object has no attribute 'format_regex'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserRegex.test_format_month
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 664, in test_format_month
    assert self.format_regex.findall("MMMM-MMM-MM-M") == ["MMMM", "MMM", "MM", "M"]
AttributeError: 'TestDateTimeParserRegex' object has no attribute 'format_regex'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserRegex.test_format_second
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 680, in test_format_second
    assert self.format_regex.findall("ss-s") == ["ss", "s"]
AttributeError: 'TestDateTimeParserRegex' object has no attribute 'format_regex'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserRegex.test_format_subsecond
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 684, in test_format_subsecond
    assert self.format_regex.findall("SSSSSS-SSSSS-SSSS-SSS-SS-S") == [
AttributeError: 'TestDateTimeParserRegex' object has no attribute 'format_regex'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserRegex.test_format_timestamp
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 703, in test_format_timestamp
    assert self.format_regex.findall("X") == ["X"]
AttributeError: 'TestDateTimeParserRegex' object has no attribute 'format_regex'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserRegex.test_format_timestamp_milli
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 707, in test_format_timestamp_milli
    assert self.format_regex.findall("x") == ["x"]
AttributeError: 'TestDateTimeParserRegex' object has no attribute 'format_regex'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserRegex.test_format_tz
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 695, in test_format_tz
    assert self.format_regex.findall("ZZZ-ZZ-Z") == ["ZZZ", "ZZ", "Z"]
AttributeError: 'TestDateTimeParserRegex' object has no attribute 'format_regex'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserRegex.test_format_year
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 660, in test_format_year
    assert self.format_regex.findall("YYYY-YY") == ["YYYY", "YY"]
AttributeError: 'TestDateTimeParserRegex' object has no attribute 'format_regex'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserSearchDate.test_escape
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 1458, in test_escape
    assert self.parser.parse(
AttributeError: 'TestDateTimeParserSearchDate' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserSearchDate.test_parse_search
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 1419, in test_parse_search
    assert self.parser.parse(
AttributeError: 'TestDateTimeParserSearchDate' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserSearchDate.test_parse_search_fails
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 1453, in test_parse_search_fails
    self.parser.parse("Jag föddes den 25 Augusti 1975", "DD MMMM YYYY")
AttributeError: 'TestDateTimeParserSearchDate' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserSearchDate.test_parse_search_with_names
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 1435, in test_parse_search_with_names
    assert self.parser.parse("June was born in May 1980", "MMMM YYYY") == datetime(
AttributeError: 'TestDateTimeParserSearchDate' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestDateTimeParserSearchDate.test_parse_search_with_numbers
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 1425, in test_parse_search_with_numbers
    assert self.parser.parse(
AttributeError: 'TestDateTimeParserSearchDate' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestTzinfoParser.test_parse_fails
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 1241, in test_parse_fails
    self.parser.parse("fail")
AttributeError: 'TestTzinfoParser' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestTzinfoParser.test_parse_iso
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 1221, in test_parse_iso
    assert self.parser.parse("01:00") == tz.tzoffset(None, 3600)
AttributeError: 'TestTzinfoParser' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestTzinfoParser.test_parse_local
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 1212, in test_parse_local
    assert self.parser.parse("local") == tz.tzlocal()
AttributeError: 'TestTzinfoParser' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestTzinfoParser.test_parse_str
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 1236, in test_parse_str
    assert self.parser.parse("US/Pacific") == tz.gettz("US/Pacific")
AttributeError: 'TestTzinfoParser' object has no attribute 'parser'

======================================================================
ERROR: tests.test_parser.TestTzinfoParser.test_parse_utc
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/tests/test_parser.py", line 1216, in test_parse_utc
    assert self.parser.parse("utc") == tz.tzutc()
AttributeError: 'TestTzinfoParser' object has no attribute 'parser'

----------------------------------------------------------------------
Ran 414 tests in 0.466s

FAILED (errors=318)
systemcatch commented 4 years ago

Hello @kloczek, with this release we have moved to using pytest instead of nose.

kloczek commented 4 years ago

Thank you very much.

It works now :)

+ /usr/bin/python3 -m pytest -v
========================================================================================= test session starts ==========================================================================================
platform linux -- Python 3.8.2, pytest-4.6.9, py-1.8.0, pluggy-0.13.1 -- /usr/bin/python3
cachedir: .pytest_cache
hypothesis profile 'default' -> database=DirectoryBasedExampleDatabase('/home/tkloczko/rpmbuild/BUILD/arrow-0.15.6/.hypothesis/examples')
rootdir: /home/tkloczko/rpmbuild/BUILD/arrow-0.15.6, inifile: setup.cfg
plugins: forked-1.1.1, mock-1.10.4, expect-1.1.0, hypothesis-4.23.8, xdist-1.31.0, httpbin-0.3.0, cov-2.8.1, flaky-3.6.1, timeout-1.3.4, rerunfailures-8.0
collected 414 items

tests/test_api.py::TestModule::test_get PASSED                                                                                                                                                   [  0%]
tests/test_api.py::TestModule::test_utcnow PASSED                                                                                                                                                [  0%]
tests/test_api.py::TestModule::test_now PASSED                                                                                                                                                   [  0%]
tests/test_api.py::TestModule::test_factory PASSED                                                                                                                                               [  0%]
tests/test_arrow.py::TestTestArrowInit::test_init_bad_input PASSED                                                                                                                               [  1%]
tests/test_arrow.py::TestTestArrowInit::test_init PASSED                                                                                                                                         [  1%]
tests/test_arrow.py::TestTestArrowInit::test_init_pytz_timezone PASSED                                                                                                                           [  1%]
tests/test_arrow.py::TestTestArrowFactory::test_now PASSED                                                                                                                                       [  1%]
tests/test_arrow.py::TestTestArrowFactory::test_utcnow PASSED                                                                                                                                    [  2%]
tests/test_arrow.py::TestTestArrowFactory::test_fromtimestamp PASSED                                                                                                                             [  2%]
tests/test_arrow.py::TestTestArrowFactory::test_utcfromtimestamp PASSED                                                                                                                          [  2%]
tests/test_arrow.py::TestTestArrowFactory::test_fromdatetime PASSED                                                                                                                              [  2%]
tests/test_arrow.py::TestTestArrowFactory::test_fromdatetime_dt_tzinfo PASSED                                                                                                                    [  3%]
tests/test_arrow.py::TestTestArrowFactory::test_fromdatetime_tzinfo_arg PASSED                                                                                                                   [  3%]
tests/test_arrow.py::TestTestArrowFactory::test_fromdate PASSED                                                                                                                                  [  3%]
tests/test_arrow.py::TestTestArrowFactory::test_strptime PASSED                                                                                                                                  [  3%]
tests/test_arrow.py::TestTestArrowRepresentation::test_repr PASSED                                                                                                                               [  4%]
tests/test_arrow.py::TestTestArrowRepresentation::test_str PASSED                                                                                                                                [  4%]
tests/test_arrow.py::TestTestArrowRepresentation::test_hash PASSED                                                                                                                               [  4%]
tests/test_arrow.py::TestTestArrowRepresentation::test_format PASSED                                                                                                                             [  4%]
tests/test_arrow.py::TestTestArrowRepresentation::test_bare_format PASSED                                                                                                                        [  5%]
tests/test_arrow.py::TestTestArrowRepresentation::test_format_no_format_string PASSED                                                                                                            [  5%]
tests/test_arrow.py::TestTestArrowRepresentation::test_clone PASSED                                                                                                                              [  5%]
tests/test_arrow.py::TestArrowAttribute::test_getattr_base PASSED                                                                                                                                [  5%]
tests/test_arrow.py::TestArrowAttribute::test_getattr_week PASSED                                                                                                                                [  6%]
tests/test_arrow.py::TestArrowAttribute::test_getattr_quarter PASSED                                                                                                                             [  6%]
tests/test_arrow.py::TestArrowAttribute::test_getattr_dt_value PASSED                                                                                                                            [  6%]
tests/test_arrow.py::TestArrowAttribute::test_tzinfo PASSED                                                                                                                                      [  6%]
tests/test_arrow.py::TestArrowAttribute::test_naive PASSED                                                                                                                                       [  7%]
tests/test_arrow.py::TestArrowAttribute::test_timestamp PASSED                                                                                                                                   [  7%]
tests/test_arrow.py::TestArrowAttribute::test_float_timestamp PASSED                                                                                                                             [  7%]
tests/test_arrow.py::TestArrowComparison::test_eq PASSED                                                                                                                                         [  7%]
tests/test_arrow.py::TestArrowComparison::test_ne PASSED                                                                                                                                         [  7%]
tests/test_arrow.py::TestArrowComparison::test_gt PASSED                                                                                                                                         [  8%]
tests/test_arrow.py::TestArrowComparison::test_ge PASSED                                                                                                                                         [  8%]
tests/test_arrow.py::TestArrowComparison::test_lt PASSED                                                                                                                                         [  8%]
tests/test_arrow.py::TestArrowComparison::test_le PASSED                                                                                                                                         [  8%]
tests/test_arrow.py::TestArrowMath::test_add_timedelta PASSED                                                                                                                                    [  9%]
tests/test_arrow.py::TestArrowMath::test_add_other PASSED                                                                                                                                        [  9%]
tests/test_arrow.py::TestArrowMath::test_radd PASSED                                                                                                                                             [  9%]
tests/test_arrow.py::TestArrowMath::test_sub_timedelta PASSED                                                                                                                                    [  9%]
tests/test_arrow.py::TestArrowMath::test_sub_datetime PASSED                                                                                                                                     [ 10%]
tests/test_arrow.py::TestArrowMath::test_sub_arrow PASSED                                                                                                                                        [ 10%]
tests/test_arrow.py::TestArrowMath::test_sub_other PASSED                                                                                                                                        [ 10%]
tests/test_arrow.py::TestArrowMath::test_rsub_datetime PASSED                                                                                                                                    [ 10%]
tests/test_arrow.py::TestArrowMath::test_rsub_other PASSED                                                                                                                                       [ 11%]
tests/test_arrow.py::TestArrowDatetimeInterface::test_date PASSED                                                                                                                                [ 11%]
tests/test_arrow.py::TestArrowDatetimeInterface::test_time PASSED                                                                                                                                [ 11%]
tests/test_arrow.py::TestArrowDatetimeInterface::test_timetz PASSED                                                                                                                              [ 11%]
tests/test_arrow.py::TestArrowDatetimeInterface::test_astimezone PASSED                                                                                                                          [ 12%]
tests/test_arrow.py::TestArrowDatetimeInterface::test_utcoffset PASSED                                                                                                                           [ 12%]
tests/test_arrow.py::TestArrowDatetimeInterface::test_dst PASSED                                                                                                                                 [ 12%]
tests/test_arrow.py::TestArrowDatetimeInterface::test_timetuple PASSED                                                                                                                           [ 12%]
tests/test_arrow.py::TestArrowDatetimeInterface::test_utctimetuple PASSED                                                                                                                        [ 13%]
tests/test_arrow.py::TestArrowDatetimeInterface::test_toordinal PASSED                                                                                                                           [ 13%]
tests/test_arrow.py::TestArrowDatetimeInterface::test_weekday PASSED                                                                                                                             [ 13%]
tests/test_arrow.py::TestArrowDatetimeInterface::test_isoweekday PASSED                                                                                                                          [ 13%]
tests/test_arrow.py::TestArrowDatetimeInterface::test_isocalendar PASSED                                                                                                                         [ 14%]
tests/test_arrow.py::TestArrowDatetimeInterface::test_isoformat PASSED                                                                                                                           [ 14%]
tests/test_arrow.py::TestArrowDatetimeInterface::test_simplejson PASSED                                                                                                                          [ 14%]
tests/test_arrow.py::TestArrowDatetimeInterface::test_ctime PASSED                                                                                                                               [ 14%]
tests/test_arrow.py::TestArrowDatetimeInterface::test_strftime PASSED                                                                                                                            [ 14%]
tests/test_arrow.py::TestArrowFalsePositiveDst::test_dst PASSED                                                                                                                                  [ 15%]
tests/test_arrow.py::TestArrowConversion::test_to PASSED                                                                                                                                         [ 15%]
tests/test_arrow.py::TestArrowPickling::test_pickle_and_unpickle PASSED                                                                                                                          [ 15%]
tests/test_arrow.py::TestArrowReplace::test_not_attr PASSED                                                                                                                                      [ 15%]
tests/test_arrow.py::TestArrowReplace::test_replace PASSED                                                                                                                                       [ 16%]
tests/test_arrow.py::TestArrowReplace::test_replace_tzinfo PASSED                                                                                                                                [ 16%]
tests/test_arrow.py::TestArrowReplace::test_replace_week PASSED                                                                                                                                  [ 16%]
tests/test_arrow.py::TestArrowReplace::test_replace_quarter PASSED                                                                                                                               [ 16%]
tests/test_arrow.py::TestArrowReplace::test_replace_other_kwargs PASSED                                                                                                                          [ 17%]
tests/test_arrow.py::TestArrowShift::test_not_attr PASSED                                                                                                                                        [ 17%]
tests/test_arrow.py::TestArrowShift::test_shift PASSED                                                                                                                                           [ 17%]
tests/test_arrow.py::TestArrowShift::test_shift_negative PASSED                                                                                                                                  [ 17%]
tests/test_arrow.py::TestArrowShift::test_shift_quarters_bug PASSED                                                                                                                              [ 18%]
tests/test_arrow.py::TestArrowRange::test_year PASSED                                                                                                                                            [ 18%]
tests/test_arrow.py::TestArrowRange::test_quarter PASSED                                                                                                                                         [ 18%]
tests/test_arrow.py::TestArrowRange::test_month PASSED                                                                                                                                           [ 18%]
tests/test_arrow.py::TestArrowRange::test_week PASSED                                                                                                                                            [ 19%]
tests/test_arrow.py::TestArrowRange::test_day PASSED                                                                                                                                             [ 19%]
tests/test_arrow.py::TestArrowRange::test_hour PASSED                                                                                                                                            [ 19%]
tests/test_arrow.py::TestArrowRange::test_minute PASSED                                                                                                                                          [ 19%]
tests/test_arrow.py::TestArrowRange::test_second PASSED                                                                                                                                          [ 20%]
tests/test_arrow.py::TestArrowRange::test_arrow PASSED                                                                                                                                           [ 20%]
tests/test_arrow.py::TestArrowRange::test_naive_tz PASSED                                                                                                                                        [ 20%]
tests/test_arrow.py::TestArrowRange::test_aware_same_tz PASSED                                                                                                                                   [ 20%]
tests/test_arrow.py::TestArrowRange::test_aware_different_tz PASSED                                                                                                                              [ 21%]
tests/test_arrow.py::TestArrowRange::test_aware_tz PASSED                                                                                                                                        [ 21%]
tests/test_arrow.py::TestArrowRange::test_unsupported PASSED                                                                                                                                     [ 21%]
tests/test_arrow.py::TestArrowSpanRange::test_year PASSED                                                                                                                                        [ 21%]
tests/test_arrow.py::TestArrowSpanRange::test_quarter PASSED                                                                                                                                     [ 21%]
tests/test_arrow.py::TestArrowSpanRange::test_month PASSED                                                                                                                                       [ 22%]
tests/test_arrow.py::TestArrowSpanRange::test_week PASSED                                                                                                                                        [ 22%]
tests/test_arrow.py::TestArrowSpanRange::test_day PASSED                                                                                                                                         [ 22%]
tests/test_arrow.py::TestArrowSpanRange::test_days PASSED                                                                                                                                        [ 22%]
tests/test_arrow.py::TestArrowSpanRange::test_hour PASSED                                                                                                                                        [ 23%]
tests/test_arrow.py::TestArrowSpanRange::test_minute PASSED                                                                                                                                      [ 23%]
tests/test_arrow.py::TestArrowSpanRange::test_second PASSED                                                                                                                                      [ 23%]
tests/test_arrow.py::TestArrowSpanRange::test_naive_tz PASSED                                                                                                                                    [ 23%]
tests/test_arrow.py::TestArrowSpanRange::test_aware_same_tz PASSED                                                                                                                               [ 24%]
tests/test_arrow.py::TestArrowSpanRange::test_aware_different_tz PASSED                                                                                                                          [ 24%]
tests/test_arrow.py::TestArrowSpanRange::test_aware_tz PASSED                                                                                                                                    [ 24%]
tests/test_arrow.py::TestArrowSpanRange::test_bounds_param_is_passed PASSED                                                                                                                      [ 24%]
tests/test_arrow.py::TestArrowInterval::test_incorrect_input PASSED                                                                                                                              [ 25%]
tests/test_arrow.py::TestArrowInterval::test_correct PASSED                                                                                                                                      [ 25%]
tests/test_arrow.py::TestArrowInterval::test_bounds_param_is_passed PASSED                                                                                                                       [ 25%]
tests/test_arrow.py::TestArrowSpan::test_span_attribute PASSED                                                                                                                                   [ 25%]
tests/test_arrow.py::TestArrowSpan::test_span_year PASSED                                                                                                                                        [ 26%]
tests/test_arrow.py::TestArrowSpan::test_span_quarter PASSED                                                                                                                                     [ 26%]
tests/test_arrow.py::TestArrowSpan::test_span_quarter_count PASSED                                                                                                                               [ 26%]
tests/test_arrow.py::TestArrowSpan::test_span_year_count PASSED                                                                                                                                  [ 26%]
tests/test_arrow.py::TestArrowSpan::test_span_month PASSED                                                                                                                                       [ 27%]
tests/test_arrow.py::TestArrowSpan::test_span_week PASSED                                                                                                                                        [ 27%]
tests/test_arrow.py::TestArrowSpan::test_span_day PASSED                                                                                                                                         [ 27%]
tests/test_arrow.py::TestArrowSpan::test_span_hour PASSED                                                                                                                                        [ 27%]
tests/test_arrow.py::TestArrowSpan::test_span_minute PASSED                                                                                                                                      [ 28%]
tests/test_arrow.py::TestArrowSpan::test_span_second PASSED                                                                                                                                      [ 28%]
tests/test_arrow.py::TestArrowSpan::test_span_microsecond PASSED                                                                                                                                 [ 28%]
tests/test_arrow.py::TestArrowSpan::test_floor PASSED                                                                                                                                            [ 28%]
tests/test_arrow.py::TestArrowSpan::test_span_inclusive_inclusive PASSED                                                                                                                         [ 28%]
tests/test_arrow.py::TestArrowSpan::test_span_exclusive_inclusive PASSED                                                                                                                         [ 29%]
tests/test_arrow.py::TestArrowSpan::test_span_exclusive_exclusive PASSED                                                                                                                         [ 29%]
tests/test_arrow.py::TestArrowSpan::test_bounds_are_validated PASSED                                                                                                                             [ 29%]
tests/test_arrow.py::TestArrowHumanize::test_granularity PASSED                                                                                                                                  [ 29%]
tests/test_arrow.py::TestArrowHumanize::test_multiple_granularity PASSED                                                                                                                         [ 30%]
tests/test_arrow.py::TestArrowHumanize::test_seconds PASSED                                                                                                                                      [ 30%]
tests/test_arrow.py::TestArrowHumanize::test_minute PASSED                                                                                                                                       [ 30%]
tests/test_arrow.py::TestArrowHumanize::test_minutes PASSED                                                                                                                                      [ 30%]
tests/test_arrow.py::TestArrowHumanize::test_hour PASSED                                                                                                                                         [ 31%]
tests/test_arrow.py::TestArrowHumanize::test_hours PASSED                                                                                                                                        [ 31%]
tests/test_arrow.py::TestArrowHumanize::test_day PASSED                                                                                                                                          [ 31%]
tests/test_arrow.py::TestArrowHumanize::test_days PASSED                                                                                                                                         [ 31%]
tests/test_arrow.py::TestArrowHumanize::test_week PASSED                                                                                                                                         [ 32%]
tests/test_arrow.py::TestArrowHumanize::test_weeks PASSED                                                                                                                                        [ 32%]
tests/test_arrow.py::TestArrowHumanize::test_month PASSED                                                                                                                                        [ 32%]
tests/test_arrow.py::TestArrowHumanize::test_months PASSED                                                                                                                                       [ 32%]
tests/test_arrow.py::TestArrowHumanize::test_year PASSED                                                                                                                                         [ 33%]
tests/test_arrow.py::TestArrowHumanize::test_years PASSED                                                                                                                                        [ 33%]
tests/test_arrow.py::TestArrowHumanize::test_arrow PASSED                                                                                                                                        [ 33%]
tests/test_arrow.py::TestArrowHumanize::test_datetime_tzinfo PASSED                                                                                                                              [ 33%]
tests/test_arrow.py::TestArrowHumanize::test_other PASSED                                                                                                                                        [ 34%]
tests/test_arrow.py::TestArrowHumanize::test_invalid_locale PASSED                                                                                                                               [ 34%]
tests/test_arrow.py::TestArrowHumanize::test_none PASSED                                                                                                                                         [ 34%]
tests/test_arrow.py::TestArrowHumanize::test_untranslated_granularity PASSED                                                                                                                     [ 34%]
tests/test_arrow.py::TestArrowHumanizeTestsWithLocale::test_now PASSED                                                                                                                           [ 35%]
tests/test_arrow.py::TestArrowHumanizeTestsWithLocale::test_seconds PASSED                                                                                                                       [ 35%]
tests/test_arrow.py::TestArrowHumanizeTestsWithLocale::test_years PASSED                                                                                                                         [ 35%]
tests/test_arrow.py::TestArrowIsBetween::test_start_before_end PASSED                                                                                                                            [ 35%]
tests/test_arrow.py::TestArrowIsBetween::test_exclusive_exclusive_bounds PASSED                                                                                                                  [ 35%]
tests/test_arrow.py::TestArrowIsBetween::test_exclusive_exclusive_bounds_same_date PASSED                                                                                                        [ 36%]
tests/test_arrow.py::TestArrowIsBetween::test_inclusive_exclusive_bounds PASSED                                                                                                                  [ 36%]
tests/test_arrow.py::TestArrowIsBetween::test_exclusive_inclusive_bounds PASSED                                                                                                                  [ 36%]
tests/test_arrow.py::TestArrowIsBetween::test_inclusive_inclusive_bounds_same_date PASSED                                                                                                        [ 36%]
tests/test_arrow.py::TestArrowIsBetween::test_type_error_exception PASSED                                                                                                                        [ 37%]
tests/test_arrow.py::TestArrowIsBetween::test_attribute_error_exception PASSED                                                                                                                   [ 37%]
tests/test_arrow.py::TestArrowUtil::test_get_datetime PASSED                                                                                                                                     [ 37%]
tests/test_arrow.py::TestArrowUtil::test_get_tzinfo PASSED                                                                                                                                       [ 37%]
tests/test_arrow.py::TestArrowUtil::test_get_iteration_params PASSED                                                                                                                             [ 38%]
tests/test_factory.py::TestGet::test_no_args PASSED                                                                                                                                              [ 38%]
tests/test_factory.py::TestGet::test_timestamp_one_arg_no_arg PASSED                                                                                                                             [ 38%]
tests/test_factory.py::TestGet::test_one_arg_none PASSED                                                                                                                                         [ 38%]
tests/test_factory.py::TestGet::test_struct_time PASSED                                                                                                                                          [ 39%]
tests/test_factory.py::TestGet::test_one_arg_timestamp PASSED                                                                                                                                    [ 39%]
tests/test_factory.py::TestGet::test_one_arg_timestamp_with_tzinfo PASSED                                                                                                                        [ 39%]
tests/test_factory.py::TestGet::test_one_arg_arrow PASSED                                                                                                                                        [ 39%]
tests/test_factory.py::TestGet::test_one_arg_datetime PASSED                                                                                                                                     [ 40%]
tests/test_factory.py::TestGet::test_one_arg_date PASSED                                                                                                                                         [ 40%]
tests/test_factory.py::TestGet::test_one_arg_tzinfo PASSED                                                                                                                                       [ 40%]
tests/test_factory.py::TestGet::test_one_arg_dateparser_datetime PASSED                                                                                                                          [ 40%]
tests/test_factory.py::TestGet::test_kwarg_tzinfo PASSED                                                                                                                                         [ 41%]
tests/test_factory.py::TestGet::test_kwarg_tzinfo_string PASSED                                                                                                                                  [ 41%]
tests/test_factory.py::TestGet::test_one_arg_iso_str PASSED                                                                                                                                      [ 41%]
tests/test_factory.py::TestGet::test_one_arg_iso_calendar PASSED                                                                                                                                 [ 41%]
tests/test_factory.py::TestGet::test_one_arg_other PASSED                                                                                                                                        [ 42%]
tests/test_factory.py::TestGet::test_one_arg_bool PASSED                                                                                                                                         [ 42%]
tests/test_factory.py::TestGet::test_two_args_datetime_tzinfo PASSED                                                                                                                             [ 42%]
tests/test_factory.py::TestGet::test_two_args_datetime_tz_str PASSED                                                                                                                             [ 42%]
tests/test_factory.py::TestGet::test_two_args_date_tzinfo PASSED                                                                                                                                 [ 42%]
tests/test_factory.py::TestGet::test_two_args_date_tz_str PASSED                                                                                                                                 [ 43%]
tests/test_factory.py::TestGet::test_two_args_datetime_other PASSED                                                                                                                              [ 43%]
tests/test_factory.py::TestGet::test_two_args_date_other PASSED                                                                                                                                  [ 43%]
tests/test_factory.py::TestGet::test_two_args_str_str PASSED                                                                                                                                     [ 43%]
tests/test_factory.py::TestGet::test_two_args_str_tzinfo PASSED                                                                                                                                  [ 44%]
tests/test_factory.py::TestGet::test_two_args_twitter_format PASSED                                                                                                                              [ 44%]
tests/test_factory.py::TestGet::test_two_args_str_list PASSED                                                                                                                                    [ 44%]
tests/test_factory.py::TestGet::test_two_args_unicode_unicode PASSED                                                                                                                             [ 44%]
tests/test_factory.py::TestGet::test_two_args_other PASSED                                                                                                                                       [ 45%]
tests/test_factory.py::TestGet::test_three_args_with_tzinfo PASSED                                                                                                                               [ 45%]
tests/test_factory.py::TestGet::test_three_args PASSED                                                                                                                                           [ 45%]
tests/test_factory.py::TestGet::test_full_kwargs PASSED                                                                                                                                          [ 45%]
tests/test_factory.py::TestGet::test_three_kwargs PASSED                                                                                                                                         [ 46%]
tests/test_factory.py::TestGet::test_tzinfo_string_kwargs PASSED                                                                                                                                 [ 46%]
tests/test_factory.py::TestGet::test_insufficient_kwargs PASSED                                                                                                                                  [ 46%]
tests/test_factory.py::TestGet::test_locale PASSED                                                                                                                                               [ 46%]
tests/test_factory.py::TestGet::test_locale_kwarg_only PASSED                                                                                                                                    [ 47%]
tests/test_factory.py::TestGet::test_locale_with_tzinfo PASSED                                                                                                                                   [ 47%]
tests/test_factory.py::TestUtcNow::test_utcnow PASSED                                                                                                                                            [ 47%]
tests/test_factory.py::TestNow::test_no_tz PASSED                                                                                                                                                [ 47%]
tests/test_factory.py::TestNow::test_tzinfo PASSED                                                                                                                                               [ 48%]
tests/test_factory.py::TestNow::test_tz_str PASSED                                                                                                                                               [ 48%]
tests/test_formatter.py::TestDateTimeFormatterFormatToken::test_format PASSED                                                                                                                    [ 48%]
tests/test_formatter.py::TestDateTimeFormatterFormatToken::test_year PASSED                                                                                                                      [ 48%]
tests/test_formatter.py::TestDateTimeFormatterFormatToken::test_month PASSED                                                                                                                     [ 49%]
tests/test_formatter.py::TestDateTimeFormatterFormatToken::test_day PASSED                                                                                                                       [ 49%]
tests/test_formatter.py::TestDateTimeFormatterFormatToken::test_hour PASSED                                                                                                                      [ 49%]
tests/test_formatter.py::TestDateTimeFormatterFormatToken::test_minute PASSED                                                                                                                    [ 49%]
tests/test_formatter.py::TestDateTimeFormatterFormatToken::test_second PASSED                                                                                                                    [ 50%]
tests/test_formatter.py::TestDateTimeFormatterFormatToken::test_sub_second PASSED                                                                                                                [ 50%]
tests/test_formatter.py::TestDateTimeFormatterFormatToken::test_timestamp PASSED                                                                                                                 [ 50%]
tests/test_formatter.py::TestDateTimeFormatterFormatToken::test_timezone PASSED                                                                                                                  [ 50%]
tests/test_formatter.py::TestDateTimeFormatterFormatToken::test_timezone_formatter PASSED                                                                                                        [ 50%]
tests/test_formatter.py::TestDateTimeFormatterFormatToken::test_am_pm PASSED                                                                                                                     [ 51%]
tests/test_formatter.py::TestDateTimeFormatterFormatToken::test_week PASSED                                                                                                                      [ 51%]
tests/test_formatter.py::TestDateTimeFormatterFormatToken::test_nonsense PASSED                                                                                                                  [ 51%]
tests/test_formatter.py::TestDateTimeFormatterFormatToken::test_escape PASSED                                                                                                                    [ 51%]
tests/test_locales.py::TestLocaleValidation::test_locale_validation PASSED                                                                                                                       [ 52%]
tests/test_locales.py::TestModule::test_get_locale PASSED                                                                                                                                        [ 52%]
tests/test_locales.py::TestModule::test_get_locale_by_class_name PASSED                                                                                                                          [ 52%]
tests/test_locales.py::TestModule::test_locales PASSED                                                                                                                                           [ 52%]
tests/test_locales.py::TestEnglishLocale::test_describe PASSED                                                                                                                                   [ 53%]
tests/test_locales.py::TestEnglishLocale::test_format_timeframe PASSED                                                                                                                           [ 53%]
tests/test_locales.py::TestEnglishLocale::test_format_relative_now PASSED                                                                                                                        [ 53%]
tests/test_locales.py::TestEnglishLocale::test_format_relative_past PASSED                                                                                                                       [ 53%]
tests/test_locales.py::TestEnglishLocale::test_format_relative_future PASSED                                                                                                                     [ 54%]
tests/test_locales.py::TestEnglishLocale::test_ordinal_number PASSED                                                                                                                             [ 54%]
tests/test_locales.py::TestEnglishLocale::test_meridian_invalid_token PASSED                                                                                                                     [ 54%]
tests/test_locales.py::TestItalianLocale::test_ordinal_number PASSED                                                                                                                             [ 54%]
tests/test_locales.py::TestSpanishLocale::test_ordinal_number PASSED                                                                                                                             [ 55%]
tests/test_locales.py::TestSpanishLocale::test_format_timeframe PASSED                                                                                                                           [ 55%]
tests/test_locales.py::TestFrenchLocale::test_ordinal_number PASSED                                                                                                                              [ 55%]
tests/test_locales.py::TestRussianLocale::test_plurals2 PASSED                                                                                                                                   [ 55%]
tests/test_locales.py::TestPolishLocale::test_plurals PASSED                                                                                                                                     [ 56%]
tests/test_locales.py::TestIcelandicLocale::test_format_timeframe PASSED                                                                                                                         [ 56%]
tests/test_locales.py::TestMalayalamLocale::test_format_timeframe PASSED                                                                                                                         [ 56%]
tests/test_locales.py::TestMalayalamLocale::test_format_relative_now PASSED                                                                                                                      [ 56%]
tests/test_locales.py::TestMalayalamLocale::test_format_relative_past PASSED                                                                                                                     [ 57%]
tests/test_locales.py::TestMalayalamLocale::test_format_relative_future PASSED                                                                                                                   [ 57%]
tests/test_locales.py::TestHindiLocale::test_format_timeframe PASSED                                                                                                                             [ 57%]
tests/test_locales.py::TestHindiLocale::test_format_relative_now PASSED                                                                                                                          [ 57%]
tests/test_locales.py::TestHindiLocale::test_format_relative_past PASSED                                                                                                                         [ 57%]
tests/test_locales.py::TestHindiLocale::test_format_relative_future PASSED                                                                                                                       [ 58%]
tests/test_locales.py::TestCzechLocale::test_format_timeframe PASSED                                                                                                                             [ 58%]
tests/test_locales.py::TestCzechLocale::test_format_relative_now PASSED                                                                                                                          [ 58%]
tests/test_locales.py::TestCzechLocale::test_format_relative_future PASSED                                                                                                                       [ 58%]
tests/test_locales.py::TestCzechLocale::test_format_relative_past PASSED                                                                                                                         [ 59%]
tests/test_locales.py::TestSlovakLocale::test_format_timeframe PASSED                                                                                                                            [ 59%]
tests/test_locales.py::TestSlovakLocale::test_format_relative_now PASSED                                                                                                                         [ 59%]
tests/test_locales.py::TestSlovakLocale::test_format_relative_future PASSED                                                                                                                      [ 59%]
tests/test_locales.py::TestSlovakLocale::test_format_relative_past PASSED                                                                                                                        [ 60%]
tests/test_locales.py::TestBulgarianLocale::test_plurals2 PASSED                                                                                                                                 [ 60%]
tests/test_locales.py::TestMacedonianLocale::test_plurals_mk PASSED                                                                                                                              [ 60%]
tests/test_locales.py::TestHebrewLocale::test_couple_of_timeframe PASSED                                                                                                                         [ 60%]
tests/test_locales.py::TestMarathiLocale::test_dateCoreFunctionality PASSED                                                                                                                      [ 61%]
tests/test_locales.py::TestMarathiLocale::test_format_timeframe PASSED                                                                                                                           [ 61%]
tests/test_locales.py::TestMarathiLocale::test_format_relative_now PASSED                                                                                                                        [ 61%]
tests/test_locales.py::TestMarathiLocale::test_format_relative_past PASSED                                                                                                                       [ 61%]
tests/test_locales.py::TestMarathiLocale::test_format_relative_future PASSED                                                                                                                     [ 62%]
tests/test_locales.py::TestMarathiLocale::test_ordinal_number PASSED                                                                                                                             [ 62%]
tests/test_locales.py::TestFinnishLocale::test_format_timeframe PASSED                                                                                                                           [ 62%]
tests/test_locales.py::TestFinnishLocale::test_format_relative_now PASSED                                                                                                                        [ 62%]
tests/test_locales.py::TestFinnishLocale::test_format_relative_past PASSED                                                                                                                       [ 63%]
tests/test_locales.py::TestFinnishLocale::test_format_relative_future PASSED                                                                                                                     [ 63%]
tests/test_locales.py::TestFinnishLocale::test_ordinal_number PASSED                                                                                                                             [ 63%]
tests/test_locales.py::TestGermanLocale::test_ordinal_number PASSED                                                                                                                              [ 63%]
tests/test_locales.py::TestGermanLocale::test_define PASSED                                                                                                                                      [ 64%]
tests/test_locales.py::TestGermanLocale::test_weekday PASSED                                                                                                                                     [ 64%]
tests/test_locales.py::TestHungarianLocale::test_format_timeframe PASSED                                                                                                                         [ 64%]
tests/test_locales.py::TestEsperantoLocale::test_format_timeframe PASSED                                                                                                                         [ 64%]
tests/test_locales.py::TestEsperantoLocale::test_ordinal_number PASSED                                                                                                                           [ 64%]
tests/test_locales.py::TestThaiLocale::test_year_full PASSED                                                                                                                                     [ 65%]
tests/test_locales.py::TestThaiLocale::test_year_abbreviation PASSED                                                                                                                             [ 65%]
tests/test_locales.py::TestThaiLocale::test_format_relative_now PASSED                                                                                                                           [ 65%]
tests/test_locales.py::TestThaiLocale::test_format_relative_past PASSED                                                                                                                          [ 65%]
tests/test_locales.py::TestThaiLocale::test_format_relative_future PASSED                                                                                                                        [ 66%]
tests/test_locales.py::TestBengaliLocale::test_ordinal_number PASSED                                                                                                                             [ 66%]
tests/test_locales.py::TestRomanianLocale::test_timeframes PASSED                                                                                                                                [ 66%]
tests/test_locales.py::TestRomanianLocale::test_relative_timeframes PASSED                                                                                                                       [ 66%]
tests/test_locales.py::TestArabicLocale::test_timeframes PASSED                                                                                                                                  [ 67%]
tests/test_locales.py::TestNepaliLocale::test_format_timeframe PASSED                                                                                                                            [ 67%]
tests/test_locales.py::TestNepaliLocale::test_format_relative_now PASSED                                                                                                                         [ 67%]
tests/test_locales.py::TestNepaliLocale::test_format_relative_future PASSED                                                                                                                      [ 67%]
tests/test_locales.py::TestNepaliLocale::test_format_relative_past PASSED                                                                                                                        [ 68%]
tests/test_locales.py::TestIndonesianLocale::test_timeframes PASSED                                                                                                                              [ 68%]
tests/test_locales.py::TestIndonesianLocale::test_format_relative_now PASSED                                                                                                                     [ 68%]
tests/test_locales.py::TestIndonesianLocale::test_format_relative_past PASSED                                                                                                                    [ 68%]
tests/test_locales.py::TestIndonesianLocale::test_format_relative_future PASSED                                                                                                                  [ 69%]
tests/test_locales.py::TestTagalogLocale::test_format_timeframe PASSED                                                                                                                           [ 69%]
tests/test_locales.py::TestTagalogLocale::test_format_relative_now PASSED                                                                                                                        [ 69%]
tests/test_locales.py::TestTagalogLocale::test_format_relative_past PASSED                                                                                                                       [ 69%]
tests/test_locales.py::TestTagalogLocale::test_format_relative_future PASSED                                                                                                                     [ 70%]
tests/test_locales.py::TestTagalogLocale::test_ordinal_number PASSED                                                                                                                             [ 70%]
tests/test_locales.py::TestEstonianLocale::test_format_timeframe PASSED                                                                                                                          [ 70%]
tests/test_locales.py::TestPortugueseLocale::test_format_timeframe PASSED                                                                                                                        [ 70%]
tests/test_locales.py::TestBrazilianPortugueseLocale::test_format_timeframe PASSED                                                                                                               [ 71%]
tests/test_locales.py::TestHongKongLocale::test_format_timeframe PASSED                                                                                                                          [ 71%]
tests/test_locales.py::TestChineseTWLocale::test_format_timeframe PASSED                                                                                                                         [ 71%]
tests/test_parser.py::TestDateTimeParser::test_parse_multiformat PASSED                                                                                                                          [ 71%]
tests/test_parser.py::TestDateTimeParser::test_parse_multiformat_all_fail PASSED                                                                                                                 [ 71%]
tests/test_parser.py::TestDateTimeParser::test_parse_multiformat_unself_expected_fail PASSED                                                                                                     [ 72%]
tests/test_parser.py::TestDateTimeParser::test_parse_token_nonsense PASSED                                                                                                                       [ 72%]
tests/test_parser.py::TestDateTimeParser::test_parse_token_invalid_meridians PASSED                                                                                                              [ 72%]
tests/test_parser.py::TestDateTimeParser::test_parser_no_caching PASSED                                                                                                                          [ 72%]
tests/test_parser.py::TestDateTimeParser::test_parser_1_line_caching PASSED                                                                                                                      [ 73%]
tests/test_parser.py::TestDateTimeParser::test_parser_multiple_line_caching PASSED                                                                                                               [ 73%]
tests/test_parser.py::TestDateTimeParser::test_YY_and_YYYY_format_list PASSED                                                                                                                    [ 73%]
tests/test_parser.py::TestDateTimeParser::test_timestamp_format_list PASSED                                                                                                                      [ 73%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_list PASSED                                                                                                                            [ 74%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_unrecognized_token PASSED                                                                                                              [ 74%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_parse_no_match PASSED                                                                                                                  [ 74%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_separators PASSED                                                                                                                      [ 74%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_numbers PASSED                                                                                                                         [ 75%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_year_two_digit PASSED                                                                                                                  [ 75%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_timestamp PASSED                                                                                                                       [ 75%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_expanded_timestamp PASSED                                                                                                              [ 75%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_names PASSED                                                                                                                           [ 76%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_pm PASSED                                                                                                                              [ 76%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_hours_only PASSED                                                                                                                   [ 76%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_zz PASSED                                                                                                                           [ 76%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz PASSED                                                                                                                     [ 77%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_subsecond PASSED                                                                                                                       [ 77%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_subsecond_rounding PASSED                                                                                                              [ 77%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_subsecond_rounding_overflow PASSED                                                                                                     [ 77%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_long_year PASSED                                                                                                                       [ 78%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_with_extra_words_at_start_and_end_invalid PASSED                                                                                       [ 78%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_with_extra_words_at_start_and_end_valid PASSED                                                                                         [ 78%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_with_punctuation_fences PASSED                                                                                                         [ 78%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_with_leading_and_trailing_whitespace PASSED                                                                                            [ 78%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_YYYY_DDDD PASSED                                                                                                                       [ 79%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_YYYY_DDD PASSED                                                                                                                        [ 79%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_YYYY_MM_DDDD PASSED                                                                                                                    [ 79%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_DDD_only PASSED                                                                                                                        [ 79%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_DDDD_only PASSED                                                                                                                       [ 80%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_HH_24 PASSED                                                                                                                           [ 80%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_W PASSED                                                                                                                               [ 80%]
tests/test_parser.py::TestDateTimeParserRegex::test_format_year PASSED                                                                                                                           [ 80%]
tests/test_parser.py::TestDateTimeParserRegex::test_format_month PASSED                                                                                                                          [ 81%]
tests/test_parser.py::TestDateTimeParserRegex::test_format_day PASSED                                                                                                                            [ 81%]
tests/test_parser.py::TestDateTimeParserRegex::test_format_hour PASSED                                                                                                                           [ 81%]
tests/test_parser.py::TestDateTimeParserRegex::test_format_minute PASSED                                                                                                                         [ 81%]
tests/test_parser.py::TestDateTimeParserRegex::test_format_second PASSED                                                                                                                         [ 82%]
tests/test_parser.py::TestDateTimeParserRegex::test_format_subsecond PASSED                                                                                                                      [ 82%]
tests/test_parser.py::TestDateTimeParserRegex::test_format_tz PASSED                                                                                                                             [ 82%]
tests/test_parser.py::TestDateTimeParserRegex::test_format_am_pm PASSED                                                                                                                          [ 82%]
tests/test_parser.py::TestDateTimeParserRegex::test_format_timestamp PASSED                                                                                                                      [ 83%]
tests/test_parser.py::TestDateTimeParserRegex::test_format_timestamp_milli PASSED                                                                                                                [ 83%]
tests/test_parser.py::TestDateTimeParserRegex::test_escape PASSED                                                                                                                                [ 83%]
tests/test_parser.py::TestDateTimeParserRegex::test_month_names PASSED                                                                                                                           [ 83%]
tests/test_parser.py::TestDateTimeParserRegex::test_month_abbreviations PASSED                                                                                                                   [ 84%]
tests/test_parser.py::TestDateTimeParserRegex::test_digits PASSED                                                                                                                                [ 84%]
tests/test_parser.py::TestDateTimeParserRegex::test_tz PASSED                                                                                                                                    [ 84%]
tests/test_parser.py::TestDateTimeParserRegex::test_timestamp PASSED                                                                                                                             [ 84%]
tests/test_parser.py::TestDateTimeParserRegex::test_timestamp_milli PASSED                                                                                                                       [ 85%]
tests/test_parser.py::TestDateTimeParserRegex::test_time PASSED                                                                                                                                  [ 85%]
tests/test_parser.py::TestDateTimeParserISO::test_YYYY PASSED                                                                                                                                    [ 85%]
tests/test_parser.py::TestDateTimeParserISO::test_YYYY_DDDD PASSED                                                                                                                               [ 85%]
tests/test_parser.py::TestDateTimeParserISO::test_YYYY_DDDD_HH_mm_ssZ PASSED                                                                                                                     [ 85%]
tests/test_parser.py::TestDateTimeParserISO::test_YYYY_MM_DDDD PASSED                                                                                                                            [ 86%]
tests/test_parser.py::TestDateTimeParserISO::test_YYYY_MM PASSED                                                                                                                                 [ 86%]
tests/test_parser.py::TestDateTimeParserISO::test_YYYY_MM_DD PASSED                                                                                                                              [ 86%]
tests/test_parser.py::TestDateTimeParserISO::test_YYYY_MM_DDTHH_mmZ PASSED                                                                                                                       [ 86%]
tests/test_parser.py::TestDateTimeParserISO::test_YYYY_MM_DDTHH_mm PASSED                                                                                                                        [ 87%]
tests/test_parser.py::TestDateTimeParserISO::test_YYYY_MM_DDTHH PASSED                                                                                                                           [ 87%]
tests/test_parser.py::TestDateTimeParserISO::test_YYYY_MM_DDTHHZ PASSED                                                                                                                          [ 87%]
tests/test_parser.py::TestDateTimeParserISO::test_YYYY_MM_DDTHH_mm_ssZ PASSED                                                                                                                    [ 87%]
tests/test_parser.py::TestDateTimeParserISO::test_YYYY_MM_DDTHH_mm_ss PASSED                                                                                                                     [ 88%]
tests/test_parser.py::TestDateTimeParserISO::test_YYYY_MM_DD_HH_mmZ PASSED                                                                                                                       [ 88%]
tests/test_parser.py::TestDateTimeParserISO::test_YYYY_MM_DD_HH_mm PASSED                                                                                                                        [ 88%]
tests/test_parser.py::TestDateTimeParserISO::test_YYYY_MM_DD_HH PASSED                                                                                                                           [ 88%]
tests/test_parser.py::TestDateTimeParserISO::test_invalid_time PASSED                                                                                                                            [ 89%]
tests/test_parser.py::TestDateTimeParserISO::test_YYYY_MM_DD_HH_mm_ssZ PASSED                                                                                                                    [ 89%]
tests/test_parser.py::TestDateTimeParserISO::test_YYYY_MM_DD_HH_mm_ss PASSED                                                                                                                     [ 89%]
tests/test_parser.py::TestDateTimeParserISO::test_YYYY_MM_DDTHH_mm_ss_S PASSED                                                                                                                   [ 89%]
tests/test_parser.py::TestDateTimeParserISO::test_YYYY_MM_DDTHH_mm_ss_SZ PASSED                                                                                                                  [ 90%]
tests/test_parser.py::TestDateTimeParserISO::test_W PASSED                                                                                                                                       [ 90%]
tests/test_parser.py::TestDateTimeParserISO::test_invalid_Z PASSED                                                                                                                               [ 90%]
tests/test_parser.py::TestDateTimeParserISO::test_parse_subsecond PASSED                                                                                                                         [ 90%]
tests/test_parser.py::TestDateTimeParserISO::test_gnu_date PASSED                                                                                                                                [ 91%]
tests/test_parser.py::TestDateTimeParserISO::test_isoformat PASSED                                                                                                                               [ 91%]
tests/test_parser.py::TestDateTimeParserISO::test_parse_iso_with_leading_and_trailing_whitespace PASSED                                                                                          [ 91%]
tests/test_parser.py::TestDateTimeParserISO::test_parse_iso_with_extra_words_at_start_and_end_invalid PASSED                                                                                     [ 91%]
tests/test_parser.py::TestDateTimeParserISO::test_iso8601_basic_format PASSED                                                                                                                    [ 92%]
tests/test_parser.py::TestDateTimeParserISO::test_midnight_end_day PASSED                                                                                                                        [ 92%]
tests/test_parser.py::TestTzinfoParser::test_parse_local PASSED                                                                                                                                  [ 92%]
tests/test_parser.py::TestTzinfoParser::test_parse_utc PASSED                                                                                                                                    [ 92%]
tests/test_parser.py::TestTzinfoParser::test_parse_iso PASSED                                                                                                                                    [ 92%]
tests/test_parser.py::TestTzinfoParser::test_parse_str PASSED                                                                                                                                    [ 93%]
tests/test_parser.py::TestTzinfoParser::test_parse_fails PASSED                                                                                                                                  [ 93%]
tests/test_parser.py::TestDateTimeParserMonthName::test_shortmonth_capitalized PASSED                                                                                                            [ 93%]
tests/test_parser.py::TestDateTimeParserMonthName::test_shortmonth_allupper PASSED                                                                                                               [ 93%]
tests/test_parser.py::TestDateTimeParserMonthName::test_shortmonth_alllower PASSED                                                                                                               [ 94%]
tests/test_parser.py::TestDateTimeParserMonthName::test_month_capitalized PASSED                                                                                                                 [ 94%]
tests/test_parser.py::TestDateTimeParserMonthName::test_month_allupper PASSED                                                                                                                    [ 94%]
tests/test_parser.py::TestDateTimeParserMonthName::test_month_alllower PASSED                                                                                                                    [ 94%]
tests/test_parser.py::TestDateTimeParserMonthName::test_localized_month_name PASSED                                                                                                              [ 95%]
tests/test_parser.py::TestDateTimeParserMonthName::test_localized_month_abbreviation PASSED                                                                                                      [ 95%]
tests/test_parser.py::TestDateTimeParserMeridians::test_meridians_lowercase PASSED                                                                                                               [ 95%]
tests/test_parser.py::TestDateTimeParserMeridians::test_meridians_capitalized PASSED                                                                                                             [ 95%]
tests/test_parser.py::TestDateTimeParserMeridians::test_localized_meridians_lowercase PASSED                                                                                                     [ 96%]
tests/test_parser.py::TestDateTimeParserMeridians::test_localized_meridians_capitalized PASSED                                                                                                   [ 96%]
tests/test_parser.py::TestDateTimeParserMeridians::test_es_meridians PASSED                                                                                                                      [ 96%]
tests/test_parser.py::TestDateTimeParserMeridians::test_fr_meridians PASSED                                                                                                                      [ 96%]
tests/test_parser.py::TestDateTimeParserMonthOrdinalDay::test_english PASSED                                                                                                                     [ 97%]
tests/test_parser.py::TestDateTimeParserMonthOrdinalDay::test_italian PASSED                                                                                                                     [ 97%]
tests/test_parser.py::TestDateTimeParserMonthOrdinalDay::test_spanish PASSED                                                                                                                     [ 97%]
tests/test_parser.py::TestDateTimeParserMonthOrdinalDay::test_french PASSED                                                                                                                      [ 97%]
tests/test_parser.py::TestDateTimeParserSearchDate::test_parse_search PASSED                                                                                                                     [ 98%]
tests/test_parser.py::TestDateTimeParserSearchDate::test_parse_search_with_numbers PASSED                                                                                                        [ 98%]
tests/test_parser.py::TestDateTimeParserSearchDate::test_parse_search_with_names PASSED                                                                                                          [ 98%]
tests/test_parser.py::TestDateTimeParserSearchDate::test_parse_search_locale_with_names PASSED                                                                                                   [ 98%]
tests/test_parser.py::TestDateTimeParserSearchDate::test_parse_search_fails PASSED                                                                                                               [ 99%]
tests/test_parser.py::TestDateTimeParserSearchDate::test_escape PASSED                                                                                                                           [ 99%]
tests/test_util.py::TestUtil::test_total_seconds PASSED                                                                                                                                          [ 99%]
tests/test_util.py::TestUtil::test_is_timestamp PASSED                                                                                                                                           [ 99%]
tests/test_util.py::TestUtil::test_iso_gregorian PASSED                                                                                                                                          [100%]

----------- coverage: platform linux, python 3.8.2-final-0 -----------
Name                 Stmts   Miss Branch BrPart  Cover   Missing
----------------------------------------------------------------
arrow/__init__.py        5      0      0      0   100%
arrow/_version.py        1      0      0      0   100%
arrow/api.py            16      0      0      0   100%
arrow/arrow.py         460      0    214      0   100%
arrow/constants.py       3      0      0      0   100%
arrow/factory.py        76      0     48      0   100%
arrow/formatter.py      90      0     72      0   100%
arrow/locales.py       754      0    102      0   100%
arrow/parser.py        264      0    134      0   100%
arrow/util.py           25      0      8      0   100%
----------------------------------------------------------------
TOTAL                 1694      0    578      0   100%

Required test coverage of 100% reached. Total coverage: 100.00%

====================================================================================== 414 passed in 4.90 seconds ======================================================================================