arrow-py / arrow

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

Fix MAX_TIMESTAMP on Windows #882

Closed jadchaar closed 3 years ago

jadchaar commented 3 years ago

Pull Request Checklist

Thank you for taking the time to improve Arrow! Before submitting your pull request, please check all appropriate boxes:

If you have any questions about your code changes or any of the points above, please submit your questions along with the pull request and we will try our best to help!

Description of Changes

Closes: https://github.com/arrow-py/arrow/issues/880

codecov[bot] commented 3 years ago

Codecov Report

Merging #882 (2291c4d) into master (30d16c1) will not change coverage. The diff coverage is 100.00%.

Impacted file tree graph

@@            Coverage Diff            @@
##            master      #882   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files            9         9           
  Lines         1796      1797    +1     
  Branches       313       313           
=========================================
+ Hits          1796      1797    +1     
Impacted Files Coverage Δ
arrow/constants.py 100.00% <100.00%> (ø)

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 30d16c1...2291c4d. Read the comment docs.

jadchaar commented 3 years ago

Hey @pgogri can you pull this branch and check if the fix works on your machine using WSL?

jadchaar commented 3 years ago

Do any of you guys have access to WSL other than @pgogri? It would be nice to get this change validated before the merge :).

systemcatch commented 3 years ago

Do any of you guys have access to WSL other than @pgogri? It would be nice to get this change validated before the merge :).

No Windows box here, maybe @krisfremen has one?

krisfremen commented 3 years ago

Do any of you guys have access to WSL other than @pgogri? It would be nice to get this change validated before the merge :).

Yeah, I have win10 with wsl2. I can test it out in an hour or so.

pgogri commented 3 years ago

Hey @jadchaar I ran it and the previous error is gone. But at the end, it shows that 1665 passed, 1 xfailed. So I think 1 test is failing? It is hard to spot which test failed as it will not output a summary. I piped the whole output to a file for reference:

rm -f .coverage coverage.xml
. venv/bin/activate; \
pytest
============================= test session starts ==============================
platform linux -- Python 3.8.2, pytest-6.1.2, py-1.9.0, pluggy-0.13.1 -- /mnt/c/eecs481/HW6/arrow/venv/bin/python3.8
cachedir: .pytest_cache
rootdir: /mnt/c/eecs481/HW6/arrow, configfile: tox.ini, testpaths: tests
plugins: cov-2.10.1, mock-3.3.1
collecting ... collected 1666 items

tests/test_api.py::TestModule::test_get PASSED                           [  0%]
tests/test_api.py::TestModule::test_utcnow PASSED                        [  0%]PASSED                           [  0%]w 
tests/test_api.py::TestModule::test_factory PASSED                       [  0%]
tests/test_arrow.py::TestTestArrowInit::test_init_bad_input PASSED       [  0%]
tests/test_arrow.py::TestTestArrowInit::test_init 
tests/test_arrow.py::TestTestArrowInit::test_init_pytz_timezone PASSED   [  0%]PASSED       [  0%]
tests/test_arrow.py::TestTestArrowFactory::test_now 
tests/test_arrow.py::TestTestArrowFactory::test_utcnow PASSED            [  0%]
tests/test_arrow.py::TestTestArrowFactory::test_fromtimestamp 
tests/test_arrow.py::TestTestArrowFactory::test_utcfromtimestamp PASSED  [  0%]
tests/test_arrow.py::TestTestArrowFactory::test_fromdatetime PASSED      [  0%]
tests/test_arrow.py::TestTestArrowFactory::test_fromdatetime_dt_tzinfo PASSED [  0%]
tests/test_arrow.py::TestTestArrowFactory::test_fromdatetime_tzinfo_arg PASSED [  0%]
tests/test_arrow.py::TestTestArrowFactory::test_fromdate 
tests/test_arrow.py::TestTestArrowFactory::test_strptime PASSED          [  1%]
tests/test_arrow.py::TestTestArrowRepresentation::test_repr PASSED       [  1%]
tests/test_arrow.py::TestTestArrowRepresentation::test_str 
tests/test_arrow.py::TestTestArrowRepresentation::test_hash PASSED       [  1%]
tests/test_arrow.py::TestTestArrowRepresentation::test_format PASSED     [  1%]
tests/test_arrow.py::TestTestArrowRepresentation::test_bare_format 
tests/test_arrow.py::TestTestArrowRepresentation::test_format_no_format_string PASSED [  1%]PASSED      [  1%]py::TestTestArrowRepresentation::test_clone 
tests/test_arrow.py::TestArrowAttribute::test_getattr_base PASSED        [  1%]
tests/test_arrow.py::TestArrowAttribute::test_getattr_week PASSED        [  1%]PASSED     [  1%]
tests/test_arrow.py::TestArrowAttribute::test_getattr_dt_value PASSED    [  1%]PASSED              [  1%]
tests/test_arrow.py::TestArrowAttribute::test_naive PASSED               [  1%]
tests/test_arrow.py::TestArrowAttribute::test_timestamp PASSED           [  1%]
tests/test_arrow.py::TestArrowAttribute::test_int_timestamp PASSED       [  1%]
tests/test_arrow.py::TestArrowAttribute::test_float_timestamp 
tests/test_arrow.py::TestArrowAttribute::test_getattr_fold PASSED        [  2%]
tests/test_arrow.py::TestArrowAttribute::test_getattr_ambiguous PASSED   [  2%]
tests/test_arrow.py::TestArrowAttribute::test_getattr_imaginary PASSED   [  2%]
tests/test_arrow.py::TestArrowComparison::test_eq 
tests/test_arrow.py::TestArrowComparison::test_ne PASSED                 [  2%]
tests/test_arrow.py::TestArrowComparison::test_gt PASSED                 [  2%]
tests/test_arrow.py::TestArrowComparison::test_ge PASSED                 [  2%]
tests/test_arrow.py::TestArrowComparison::test_lt PASSED                 [  2%]
tests/test_arrow.py::TestArrowComparison::test_le PASSED                 [  2%]
tests/test_arrow.py::TestArrowMath::test_add_timedelta PASSED            [  2%]PASSED                [  2%]rowMath::test_add_other 
tests/test_arrow.py::TestArrowMath::test_radd PASSED                     [  2%]
tests/test_arrow.py::TestArrowMath::test_sub_timedelta 
tests/test_arrow.py::TestArrowMath::test_sub_datetime 
tests/test_arrow.py::TestArrowMath::test_sub_arrow PASSED                [  2%]PASSED                [  2%]
tests/test_arrow.py::TestArrowMath::test_rsub_datetime PASSED            [  3%]
tests/test_arrow.py::TestArrowMath::test_rsub_other 
tests/test_arrow.py::TestArrowDatetimeInterface::test_date 
tests/test_arrow.py::TestArrowDatetimeInterface::test_time PASSED        [  3%]
tests/test_arrow.py::TestArrowDatetimeInterface::test_timetz 
tests/test_arrow.py::TestArrowDatetimeInterface::test_astimezone PASSED  [  3%]PASSED   [  3%]
tests/test_arrow.py::TestArrowDatetimeInterface::test_dst PASSED         [  3%]
tests/test_arrow.py::TestArrowDatetimeInterface::test_timetuple PASSED   [  3%]
tests/test_arrow.py::TestArrowDatetimeInterface::test_utctimetuple PASSED [  3%]
tests/test_arrow.py::TestArrowDatetimeInterface::test_toordinal PASSED   [  3%]
tests/test_arrow.py::TestArrowDatetimeInterface::test_weekday 
tests/test_arrow.py::TestArrowDatetimeInterface::test_isoweekday PASSED  [  3%]
tests/test_arrow.py::TestArrowDatetimeInterface::test_isocalendar 
tests/test_arrow.py::TestArrowDatetimeInterface::test_isoformat 
tests/test_arrow.py::TestArrowDatetimeInterface::test_simplejson PASSED  [  3%]
tests/test_arrow.py::TestArrowDatetimeInterface::test_ctime PASSED       [  3%]
tests/test_arrow.py::TestArrowDatetimeInterface::test_strftime PASSED    [  4%]
tests/test_arrow.py::TestArrowFalsePositiveDst::test_dst 
tests/test_arrow.py::TestArrowConversion::test_to PASSED                 [  4%]PASSED [  4%]rrow.py::TestArrowConversion::test_to_pacific_then_utc 
tests/test_arrow.py::TestArrowConversion::test_to_amsterdam_then_utc 
tests/test_arrow.py::TestArrowConversion::test_to_israel_same_offset PASSED [  4%]PASSED      [  4%]
tests/test_arrow.py::TestArrowConversion::test_chicago_fall 
tests/test_arrow.py::TestArrowConversion::test_toronto_gap PASSED        [  4%]
tests/test_arrow.py::TestArrowConversion::test_sydney_gap PASSED         [  4%]
tests/test_arrow.py::TestArrowPickling::test_pickle_and_unpickle PASSED  [  4%]
tests/test_arrow.py::TestArrowReplace::test_not_attr PASSED              [  4%]
tests/test_arrow.py::TestArrowReplace::test_replace 
tests/test_arrow.py::TestArrowReplace::test_replace_tzinfo PASSED        [  4%]
tests/test_arrow.py::TestArrowReplace::test_replace_fold PASSED          [  4%]
tests/test_arrow.py::TestArrowReplace::test_replace_fold_and_other PASSED [  4%]PASSED          [  4%]
tests/test_arrow.py::TestArrowReplace::test_replace_quarter PASSED       [  5%]
tests/test_arrow.py::TestArrowReplace::test_replace_quarter_and_fold PASSED [  5%]
tests/test_arrow.py::TestArrowReplace::test_replace_other_kwargs PASSED  [  5%]
tests/test_arrow.py::TestArrowShift::test_not_attr PASSED                [  5%]
tests/test_arrow.py::TestArrowShift::test_shift PASSED                   [  5%]
tests/test_arrow.py::TestArrowShift::test_shift_negative 
tests/test_arrow.py::TestArrowShift::test_shift_quarters_bug PASSED      [  5%]PASSED [  5%]
tests/test_arrow.py::TestArrowShift::test_shift_negatiPASSED [  5%]
tests/test_arrow.py::TestArrowShift::test_shift_kiritimati 
tests/test_arrow.py::TestArrowRange::test_year PASSED                    [  5%]PASSED                 [  5%]owRange::test_quarter 
tests/test_arrow.py::TestArrowRange::test_month PASSED                   [  5%]
tests/test_arrow.py::TestArrowRange::test_week PASSED                    [  5%]
tests/test_arrow.py::TestArrowRange::test_day PASSED                     [  5%]
tests/test_arrow.py::TestArrowRange::test_hour PASSED                    [  5%]
tests/test_arrow.py::TestArrowRange::test_minute PASSED                  [  6%]
tests/test_arrow.py::TestArrowRange::test_second PASSED                  [  6%]
tests/test_arrow.py::TestArrowRange::test_arrow PASSED                   [  6%]
tests/test_arrow.py::TestArrowRange::test_naive_tz 
tests/test_arrow.py::TestArrowRange::test_aware_same_tz PASSED           [  6%]PASSED      [  6%]py::TestArrowRange::test_aware_different_tz 
tests/test_arrow.py::TestArrowRange::test_aware_tz PASSED                [  6%]
tests/test_arrow.py::TestArrowRange::test_imaginary PASSED               [  6%]
tests/test_arrow.py::TestArrowRange::test_unsupported PASSED             [  6%]
tests/test_arrow.py::TestArrowRange::test_range_over_months_ending_on_different_days 
tests/test_arrow.py::TestArrowRange::test_range_over_quarter_months_ending_on_different_days PASSED [  6%]PASSED [  6%]rrow.py::TestArrowRange::test_range_over_year_maintains_end_date_across_leap_year 
tests/test_arrow.py::TestArrowSpanRange::test_year PASSED                [  6%]
tests/test_arrow.py::TestArrowSpanRange::test_quarter PASSED             [  6%]
tests/test_arrow.py::TestArrowSpanRange::test_month PASSED               [  6%]
tests/test_arrow.py::TestArrowSpanRange::test_week PASSED                [  6%]
tests/test_arrow.py::TestArrowSpanRange::test_day PASSED                 [  6%]PASSED                [  7%]
tests/test_arrow.py::TestArrowSpanRange::test_hour PASSED                [  7%]
tests/test_arrow.py::TestArrowSpanRange::test_minute PASSED              [  7%]PASSED              [  7%]
tests/test_arrow.py::TestArrowSpanRange::test_naive_tz 
tests/test_arrow.py::TestArrowSpanRange::test_aware_same_tz PASSED       [  7%]PASSED  [  7%]
tests/test_arrow.py::TestArrowSpanRange::test_aware_tz PASSED            [  7%]
tests/test_arrow.py::TestArrowSpanRange::test_bounds_param_is_passed PASSED [  7%]PASSED      [  7%]
tests/test_arrow.py::TestArrowInterval::test_correct 
tests/test_arrow.py::TestArrowInterval::test_bounds_param_is_passed PASSED [  7%]PASSED           [  7%]
tests/test_arrow.py::TestArrowSpan::test_span_year 
tests/test_arrow.py::TestArrowSpan::test_span_quarter PASSED             [  7%]
tests/test_arrow.py::TestArrowSpan::test_span_quarter_count 
tests/test_arrow.py::TestArrowSpan::test_span_year_count PASSED          [  7%]
tests/test_arrow.py::TestArrowSpan::test_span_month PASSED               [  8%]
tests/test_arrow.py::TestArrowSpan::test_span_week PASSED                [  8%]
tests/test_arrow.py::TestArrowSpan::test_span_day PASSED                 [  8%]
tests/test_arrow.py::TestArrowSpan::test_span_hour PASSED                [  8%]PASSED              [  8%]
tests/test_arrow.py::TestArrowSpan::test_span_second PASSED              [  8%]PASSED         [  8%]:TestArrowSpan::test_span_microsecond 
tests/test_arrow.py::TestArrowSpan::test_floor 
tests/test_arrow.py::TestArrowSpan::test_span_inclusive_inclusive PASSED [  8%]
tests/test_arrow.py::TestArrowSpan::test_span_exclusive_exclusive PASSED [  8%]
tests/test_arrow.py::TestArrowSpan::test_bounds_are_validated 
tests/test_arrow.py::TestArrowHumanize::test_granularity PASSED          [  8%]
tests/test_arrow.py::TestArrowHumanize::test_multiple_granularity PASSED [  8%]
tests/test_arrow.py::TestArrowHumanize::test_seconds 
tests/test_arrow.py::TestArrowHumanize::test_minute PASSED               [  8%]
tests/test_arrow.py::TestArrowHumanize::test_minutes PASSED              [  9%]PASSED                 [  9%]
tests/test_arrow.py::PASSED                [  9%]
tests/test_arrow.py::TestArrowHumanize::test_day 
tests/test_arrow.py::TestArrowHumanize::test_days 
tests/test_arrow.py::TestArrowHumanize::test_week 
tests/test_arrow.py::TestArrowHumanize::test_weeks PASSED                [  9%]
tests/test_arrow.py::TestArrowHumanize::test_month XFAIL                 [  9%]
tests/test_arrow.py::TestArrowHumanize::test_month_plus_4_days PASSED    [  9%]PASSED               [  9%]rrowHumanize::test_months 
tests/test_arrow.py::TestArrowHumanize::test_year PASSED                 [  9%]
tests/test_arrow.py::TestArrowHumanize::test_years PASSED                [  9%]
tests/test_arrow.py::TestArrowHumanize::test_arrow 
tests/test_arrow.py::TestArrowHumanize::test_datetime_tzinfo PASSED      [  9%]
tests/test_arrow.py::TestArrowHumanize::test_other 
tests/test_arrow.py::TestArrowHumanize::test_invalid_locale PASSED       [  9%]
tests/test_arrow.py::TestArrowHumanize::test_week_limit PASSED           [ 10%]PASSED [ 10%]
tests/test_arrow.py::TestArrowHumanizeTestsWithLocale::test_now 
tests/test_arrow.py::TestArrowHumanizeTestsWithLocale::test_seconds PASSED [ 10%]
tests/test_arrow.py::TestArrowHumanizeTestsWithLocale::test_years 
tests/test_arrow.py::TestArrowIsBetween::test_start_before_end 
tests/test_arrow.py::TestArrowIsBetween::test_exclusive_exclusive_bounds PASSED [ 10%]
tests/test_arrow.py::TestArrowIsBetween::test_exclusive_exclusive_bounds_same_date PASSED [ 10%]
tests/test_arrow.py::TestArrowIsBetween::test_inclusive_exclusive_bounds PASSED [ 10%]
tests/test_arrow.py::TestArrowIsBetween::test_exclusive_inclusive_bounds PASSED [ 10%]
tests/test_arrow.py::TestArrowIsBetween::test_inclusive_inclusive_bounds_same_date 
tests/test_arrow.py::TestArrowIsBetween::test_type_error_exception PASSED [ 10%]PASSED [ 10%]
tests/test_arrow.py::TestArrowUtil::test_get_datetime PASSED             [ 10%]PASSED               [ 10%]
tests/test_arrow.py::TestArrowUtil::test_get_iteration_params PASSED     [ 10%]PASSED                      [ 10%]
tests/test_factory.py::TestGet::test_timestamp_one_arg_no_arg PASSED     [ 11%]
tests/test_factory.py::TestGet::test_one_arg_none 
tests/test_factory.py::TestGet::test_struct_time PASSED                  [ 11%]
tests/test_factory.py::TestGet::test_one_arg_timestamp PASSED            [ 11%]
tests/test_factory.py::TestGet::test_one_arg_expanded_timestamp PASSED   [ 11%]
tests/test_factory.py::TestGet::test_one_arg_timestamp_with_tzinfo PASSED [ 11%]
tests/test_factory.py::TestGet::test_one_arg_arrow 
tests/test_factory.py::TestGet::test_one_arg_datetime PASSED             [ 11%]
tests/test_factory.py::TestGet::test_one_arg_date 
tests/test_factory.py::TestGet::test_one_arg_tzinfo PASSED               [ 11%]
tests/test_factory.py::TestGet::test_one_arg_dateparser_datetime PASSED  [ 11%]
tests/test_factory.py::TestGet::test_kwarg_tzinfo PASSED                 [ 11%]
tests/test_factory.py::TestGet::test_kwarg_tzinfo_string PASSED          [ 11%]
tests/test_factory.py::TestGet::test_kwarg_normalize_whitespace PASSED   [ 11%]
tests/test_factory.py::TestGet::test_one_arg_iso_str PASSED              [ 11%]
tests/test_factory.py::TestGet::test_one_arg_iso_calendar PASSED         [ 11%]
tests/test_factory.py::TestGet::test_one_arg_other 
tests/test_factory.py::TestGet::test_one_arg_bool PASSED                 [ 12%]
tests/test_factory.py::TestGet::test_two_args_datetime_tz_str PASSED     [ 12%]
tests/test_factory.py::TestGet::test_two_args_date_tzinfo 
tests/test_factory.py::TestGet::test_two_args_date_tz_str 
tests/test_factory.py::TestGet::test_two_args_datetime_other PASSED      [ 12%]
tests/test_factory.py::TestGet::test_two_args_date_other 
tests/test_factory.py::TestGet::test_two_args_str_str PASSED             [ 12%]
tests/test_factory.py::TestGet::test_two_args_str_tzinfo PASSED          [ 12%]
tests/test_factory.py::TestGet::test_two_args_twitter_format PASSED      [ 12%]
tests/test_factory.py::TestGet::test_two_args_str_list PASSED            [ 12%]PASSED     [ 12%]
tests/test_factory.py::TestGet::test_two_args_other 
tests/test_factory.py::TestGet::test_three_args_with_tzinfo PASSED       [ 12%]
tests/test_factory.py::TestGet::test_three_args 
tests/test_factory.py::TestGet::test_full_kwargs PASSED                  [ 12%]
tests/test_factory.py::TestGet::test_three_kwargs 
tests/test_factory.py::TestGet::test_tzinfo_string_kwargs PASSED         [ 13%]
tests/test_factory.py::TestGet::test_insufficient_kwargs PASSED          [ 13%]
tests/test_factory.py::TestGet::test_locale PASSED                       [ 13%]
tests/test_factory.py::TestGet::test_locale_kwarg_only PASSED            [ 13%]
tests/test_factory.py::TestGet::test_locale_with_tzinfo PASSED           [ 13%]
tests/test_factory.py::TestUtcNow::test_utcnow PASSED                    [ 13%]
tests/test_factory.py::TestNow::test_no_tz PASSED                        [ 13%]PASSED                       [ 13%]
tests/test_factory.py::TestNow::test_tz_str 
tests/test_formatter.py::TestFormatterFormatToken::test_format PASSED    [ 13%]
tests/test_formatter.py::TestFormatterFormatToken::test_year PASSED      [ 13%]
tests/test_formatter.py::TestFormatterFormatToken::test_month 
tests/test_formatter.py::TestFormatterFormatToken::test_day PASSED       [ 13%]
tests/test_formatter.py::TestFormatterFormatToken::test_hour PASSED      [ 13%]
tests/test_formatter.py::TestFormatterFormatToken::test_minute 
tests/test_formatter.py::TestFormatterFormatToken::test_second PASSED    [ 13%]
tests/test_formatter.py::TestFormatterFormatToken::test_sub_second 
tests/test_formatter.py::TestFormatterFormatToken::test_timestamp PASSED [ 14%]PASSED  [ 14%]rmatter.py::TestFormatterFormatToken::test_timezone 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Saigon] PASSED [ 14%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Vancouver] PASSED [ 14%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Paramaribo] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[US/Aleutian] PASSED [ 14%]PASSED [ 14%]ormatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Enderbury] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Asuncion] PASSED [ 14%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Etc/GMT+7] PASSED [ 14%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Bogota] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Makassar] PASSED [ 14%]PASSED [ 14%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_foPASSED [ 14%]Damascus] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Universal] PASSED [ 14%]PASSED [ 14%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Etc/GMT+4] PASSED [ 15%]PASSED [ 15%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[ROK] PASSED [ 15%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Indiana/Vincennes] PASSED [ 15%]PASSED [ 15%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Dawson_Creek] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Bahrain] PASSED [ 15%]PASSED [ 15%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Ulan_Bator] PASSED [ 15%]PASSED [ 15%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Israel] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[GMT0] PASSED [ 15%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Mendoza] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Apia] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Chihuahua] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Etc/GMT-14] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Brazzaville] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Boa_Vista] PASSED [ 16%]PASSED [ 16%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Mexico_City] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Australia/Queensland] PASSED [ 16%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Creston] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Truk] PASSED [ 16%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Belize] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Atka] PASSED [ 16%]PASSED [ 16%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Norfolk] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Brussels] PASSED [ 16%]PASSED [ 16%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Pangnirtung] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Taipei] PASSED [ 16%]PASSED [ 16%]ormatter.py::TestFormatterFormatToken::test_timezone_formatter[Atlantic/Stanley] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Belem] PASSED [ 16%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Cuiaba] PASSED [ 16%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Tahiti] PASSED [ 17%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Dili] PASSED [ 17%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Bahia_Banderas] PASSED [ 17%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Etc/GMT-13] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Galapagos] PASSED [ 17%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Iran] PASSED [ 17%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Zulu] PASSED [ 17%]PASSED [ 17%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Skopje] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Yangon] PASSED [ 17%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Argentina/Buenos_Aires] PASSED [ 17%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Krasnoyarsk] PASSED [ 17%]PASSED [ 17%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Addis_Ababa] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Eire] PASSED [ 17%]PASSED [ 17%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Shanghai] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Antarctica/South_Pole] PASSED [ 18%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Etc/GMT] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Ashgabat] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Australia/Sydney] PASSED [ 18%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Indiana/Vevay] PASSED [ 18%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Argentina/Ushuaia] PASSED [ 18%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Brazil/Acre] PASSED [ 18%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Tunis] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Indian/Chagos] PASSED [ 18%]PASSED [ 18%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Ojinaga] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/North_Dakota/Beulah] PASSED [ 18%]PASSED [ 18%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[EurPASSED [ 18%]
tePASSED [ 18%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Samoa] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Atikokan] PASSED [ 19%]PASSED [ 19%]ormatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Paris] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Singapore] PASSED [ 19%]PASSED [ 19%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Efate] P
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/St_Thomas] PASSED [ 19%]PASSED [ 19%]ormatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Kentucky/Monticello] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[GMT+0] PASSED [ 19%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Madrid] PASSED [ 19%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Rankin_Inlet] PASSED [ 19%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Louisville] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Australia/West] PASSED [ 19%]PASSED [ 19%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Indiana/Marengo] PASSED [ 19%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Punta_Arenas] PASSED [ 19%]PASSED [ 19%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Tirane] PASSED [ 19%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Hongkong] PASSED [ 20%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[GMT-0] PASSED [ 20%]
tesPASSED [ 20%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Guernsey] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Australia/Canberra] PASSED [ 20%]PASSED [ 20%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Windhoek] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Chongqing] PASSED [ 20%]PASSED [ 20%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Atlantic/Azores] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Qostanay] PASSED [ 20%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Dacca] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Ashkhabad] PASSED [ 20%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[PRC] PASSED [ 20%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Campo_Grande] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Busingen] PASSED [ 21%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/St_Vincent] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Midway] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Samarkand] PASSED [ 21%]PASSED [ 21%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Guam] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Kinshasa] PASSED [ 21%]PASSED [ 21%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Swift_Current] PASSED [ 21%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Etc/GMT-2] PASSED [ 21%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Jamaica] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Indian/Mauritius] PASSED [ 21%]PASSED [ 21%]ormatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Tehran] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Australia/Tasmania] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Tbilisi] PASSED [ 21%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[US/Pacific-New] PASSED [ 21%]PASSED [ 22%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Port-au-Prince] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Argentina/Salta] PASSED [ 22%]PASSED [ 22%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Curacao] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Bamako] PASSED [ 22%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Bangui] PASSED [ 22%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Etc/GMT+2] PASSED [ 22%]PASSED [ 22%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Nassau] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Bratislava] PASSED [ 22%]PASSED [ 22%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Etc/GMT0] PASSED [ 22%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Ust-Nera] PASSED [ 22%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Antarctica/Davis] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Maceio] PASSED [ 22%]PASSED [ 22%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Magadan] PASSED [ 23%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[EET] PASSED [ 23%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Riyadh] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Timbuktu] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Kathmandu] PASSED [ 23%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[NZ-CHAT] PASSED [ 23%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[W-SU] PASSED [ 23%]PASSED [ 23%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Vaduz] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Kuala_Lumpur] PASSED [ 23%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Accra] PASSED [ 23%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Chisinau] PASSED [ 23%]PASSED [ 23%]ormatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Porto_Acre] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Kampala] PASSED [ 23%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Ujung_Pandang] PASSED [ 23%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Karachi] PASSED [ 24%]
tePASSED [ 24%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Indian/Kerguelen] PASSED [ 24%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Djibouti] PASSED [ 24%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Belgrade] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Etc/Greenwich] PASSED [ 24%]PASSED [ 24%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[AmerPASSED [ 24%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[US/Alaska] PASSED [ 24%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Gaza] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Yakutat] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Canada/Newfoundland] PASSED [ 24%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Pontianak] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[US/Indiana-Starke] PASSED [ 24%]PASSED [ 24%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Baku] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Bangkok] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Hanoi] PASSED [ 25%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[PST8PDT] PASSED [ 25%]PASSED [ 25%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Lubumbashi] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Australia/Brisbane] PASSED [ 25%]PASSED [ 25%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/BouPASSED [ 25%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Belfast] PASSED [ 25%]PASSED [ 25%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[PASSED [ 25%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Etc/GMT-8] PASSED [ 25%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Istanbul] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Pyongyang] PASSED [ 25%]PASSED [ 25%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Ndjamena] PASSED [ 25%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Tijuana] PASSED [ 25%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Lima] PASSED [ 25%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Etc/UCT] PASSED [ 26%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Volgograd] PASSED [ 26%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Lisbon] PASSED [ 26%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Dar_es_Salaam] PASSED [ 26%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Isle_of_Man] PASSED [ 26%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Jamaica] PASSED [ 26%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Iqaluit] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Fakaofo] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Marquesas] PASSED [ 26%]PASSED [ 26%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Argentina/Catamarca] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Istanbul] PASSED [ 26%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[UCT] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Colombo] PASSED [ 26%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Porto_Velho] PASSED [ 26%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Saratov] PASSED [ 26%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Thule] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Gambier] PASSED [ 27%]PASSED [ 27%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Port_of_Spain] PASSED [ 27%]PASSED [ 27%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Douala] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Kosrae] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Mbabane] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Helsinki] PASSED [ 27%]PASSED [ 27%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Amsterdam] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/El_Salvador] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[NZ] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Etc/GMT-0] PASSED [ 27%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Monaco] PASSED [ 27%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Moscow] PASSED [ 27%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Kaliningrad] PASSED [ 27%]PASSED [ 28%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Danmarkshavn] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Fortaleza] PASSED [ 28%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Ceuta] PASSED [ 28%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Saipan] PASSED [ 28%]PASSED [ 28%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Harare] PASSED [ 28%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[US/Mountain] PASSED [ 28%]PASSED [ 28%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Etc/GMT+PASSED [ 28%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Cairo] PASSED [ 28%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Pago_Pago] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Tarawa] PASSED [ 28%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Montserrat] PASSED [ 28%]PASSED [ 28%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formattePASSED [ 28%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Kiritimati] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Kigali] PASSED [ 29%]PASSED [ 29%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Guatemala] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Sao_Paulo] PASSED [ 29%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[US/Arizona] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Inuvik] PASSED [ 29%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Glace_Bay] PASSED [ 29%]PASSED [ 29%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Honolulu] PASSED [ 29%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Egypt] PASSED [ 29%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Lusaka] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Etc/UTC] PASSED [ 29%]PASSED [ 29%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Etc/GMT-9] PASSED [ 29%]PASSED [ 29%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Ensenada] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[CST6CDT] PASSED [ 30%]PASSED [ 30%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Amman] PASSED [ 30%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Vatican] PASSED [ 30%]PASSED [ 30%]ormatter.py::TestFormatterFormatToken::test_timezone_formatter[Canada/Atlantic] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Indiana/Petersburg] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Bujumbura] PASSED [ 30%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Irkutsk] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Tashkent] PASSED [ 30%]PASSED [ 30%]ormatter.py::TestFormatterFormatToken::test_timezone_formatter[Navajo] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Copenhagen] PASSED [ 30%]PASSED [ 30%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[WETPASSED [ 30%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Australia/Adelaide] PASSED [ 30%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Thunder_Bay] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Antarctica/Mawson] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Manaus] PASSED [ 30%]PASSED [ 31%]ormatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Vienna] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Menominee] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Cancun] PASSED [ 31%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Etc/GMT+6] PASSED [ 31%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Buenos_Aires] PASSED [ 31%]PASSED [ 31%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Mariehamn] PASSED [ 31%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Knox_IN] PASSED [ 31%]PASSED [ 31%]ormatter.py::TestFormatterFormatToken::test_timezone_formatter[Brazil/West] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[US/Michigan] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[EST5EDT] PASSED [ 31%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Etc/GMT+9] PASSED [ 31%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Chicago] PASSED [ 31%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Harbin] PASSED [ 31%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Australia/Darwin] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Phnom_Penh] PASSED [ 31%]PASSED [ 31%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/New_York] PASSED [ 32%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Etc/GMT+11] PASSED [ 32%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Novosibirsk] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Australia/LHI] PASSED [ 32%]PASSED [ 32%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Luanda] PASSED [ 32%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Etc/GMT-7] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Bahia] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Montevideo] PASSED [ 32%]PASSED [ 32%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Australia/South] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Hong_Kong] PASSED [ 32%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Guayaquil] PASSED [ 32%]PASSED [ 32%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Indian/PASSED [ 32%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Brunei] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Antarctica/Macquarie] PASSED [ 33%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Canada/Eastern] PASSED [ 33%]PASSED [ 33%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/PASSED [ 33%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Antarctica/Rothera] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Rio_Branco] PASSED [ 33%]PASSED [ 33%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Grand_Turk] PASSED [ 33%]PASSED [ 33%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[PASSED [ 33%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Chita] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Oral] PASSED [ 33%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Etc/GMT+3] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[HST] PASSED [ 33%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Antarctica/Troll] PASSED [ 33%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Jujuy] PASSED [ 33%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Australia/NSW] PASSED [ 33%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Andorra] PASSED [ 34%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Yakutsk] PASSED [ 34%]PASSED [ 34%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Ulaanbaatar] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Scoresbysund] PASSED [ 34%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Santa_Isabel] PASSED [ 34%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Canada/Pacific] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Mogadishu] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Antarctica/Vostok] PASSED [ 34%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Chuuk] PASSED [ 34%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Hovd] PASSED [ 34%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Kolkata] PASSED [ 34%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Vilnius] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Atlantic/Madeira] PASSED [ 34%]PASSED [ 34%]ormatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Shiprock] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Tongatapu] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Riga] PASSED [ 34%]PASSED [ 35%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Matamoros] PASSED [ 35%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Toronto] PASSED [ 35%]PASSED [ 35%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Calcutta] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Freetown] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Kuching] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Ponape] PASSED [ 35%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Coral_Harbour] PASSED [ 35%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Maputo] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[GB-Eire] PASSED [ 35%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Etc/GMT-5] PASSED [ 35%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Nairobi] PASSED [ 35%]PASSED [ 35%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Jerusalem] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Jakarta] PASSED [ 35%]PASSED [ 36%]ormatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Santo_Domingo] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Iceland] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Etc/GMT-12] PASSED [ 36%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Aruba] PASSED [ 36%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Tripoli] PASSED [ 36%]PASSED [ 36%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Greenwich] PASSED [ 36%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Manila] PASSED [ 36%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Srednekolymsk] PASSED [ 36%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Uzhgorod] PASSED [ 36%]PASSED [ 36%]ormatter.py::TestFormatterFormatToken::test_timezone_formatter[Australia/Broken_Hill] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Ho_Chi_Minh] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Etc/GMT-3] PASSED [ 36%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Gibraltar] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Pohnpei] PASSED [ 36%]PASSED [ 36%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Novokuznetsk] PASSED [ 36%]PASSED [ 37%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Baghdad] PASSED [ 37%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Eirunepe] PASSED [ 37%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Caracas] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Pitcairn] PASSED [ 37%]PASSED [ 37%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Anadyr] PASSED [ 37%]PASSED [ 37%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Antarctica/Palmer] PASSED [ 37%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Libya] PASSED [ 37%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Kamchatka] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Chile/Continental] PASSED [ 37%]PASSED [ 37%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Halifax] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Dubai] PASSED [ 37%]PASSED [ 37%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Winnipeg] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Yap] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Indian/Maldives] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Niamey] PASSED [ 38%]PASSED [ 38%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Etc/GMPASSED [ 38%]PASSED [ 38%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[GB] PASS
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Thimphu] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Libreville] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Dushanbe] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Kralendijk] PASSED [ 38%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Berlin] PASSED [ 38%]PASSED [ 38%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[PASSED [ 38%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Indianapolis] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Abidjan] PASSED [ 39%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Bissau] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Ljubljana] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Canada/Mountain] PASSED [ 39%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Rainy_River] PASSED [ 39%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[EST] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Atlantic/Canary] PASSED [ 39%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[US/Pacific] PASSED [ 39%]PASSED [ 39%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[ROC] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Blanc-Sablon] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Jayapura] PASSED [ 39%]PASSED [ 39%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[PacPASSED [ 39%]
tPASSED [ 39%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Australia/North] PASSED [ 39%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Santiago] PASSED [ 39%]PASSED [ 40%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatterPASSED [ 40%]alein] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Qatar] PASSED [ 40%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Brazil/East] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Vladivostok] PASSED [ 40%]PASSED [ 40%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/St_Lucia] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Banjul] PASSED [ 40%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Yekaterinburg] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Podgorica] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Tortola] PASSED [ 40%]PASSED [ 40%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Canada/Yukon] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Bishkek] PASSED [ 40%]PASSED [ 40%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Argentina/San_Luis] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Bucharest] PASSED [ 40%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Edmonton] PASSED [ 41%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Arctic/Longyearbyen] PASSED [ 41%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[CET] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Cayenne] PASSED [ 41%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Guadeloupe] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Johannesburg] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Jersey] PASSED [ 41%]PASSED [ 41%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Chungking] PASSED [ 41%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Asmera] PASSED [ 41%]PASSED [ 41%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[AsPASSED [ 41%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Argentina/Mendoza] PASSED [ 41%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Chatham] PASSED [ 41%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Katmandu] PASSED [ 41%]PASSED [ 41%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Tegucigalpa] PASSED [ 42%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Barbados] PASSED [ 42%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Fort_Nelson] PASSED [ 42%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Tel_Aviv] PASSED [ 42%]PASSED [ 42%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Choibalsan] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Warsaw] PASSED [ 42%]PASSED [ 42%]ormatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Simferopol] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Denver] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Atlantic/Reykjavik] PASSED [ 42%]PASSED [ 42%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Oslo] PASSED [ 42%]PASSED [ 42%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatPASSED [ 42%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Monterrey] PASSED [ 42%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Indian/Christmas] PASSED [ 42%]PASSED [ 42%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Detroit] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Dhaka] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Khartoum] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Rome] PASSED [ 43%]PASSED [ 43%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Yerevan] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Anchorage] PASSED [ 43%]PASSED [ 43%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Yellowknife] PASSED [ 43%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Australia/Yancowinna] PASSED [ 43%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Etc/GMT+12] PASSED [ 43%]
testsPASSED [ 43%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Kabul] PASSED [ 43%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Poland] PASSED [ 43%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Etc/GMT-11] PASSED [ 43%]
tests/tPASSED [ 44%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Etc/GMT+0] PASSED [ 44%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Almaty] PASSED [ 44%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Sao_Tome] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Noronha] PASSED [ 44%]PASSED [ 44%]ormatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Resolute] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Kentucky/Louisville] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Beirut] PASSED [ 44%]PASSED [ 44%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Grenada] PASSED [ 44%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[US/Central] PASSED [ 44%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Adak] PASSED [ 44%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Minsk] PASSED [ 44%]PASSED [ 44%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Indiana/Knox] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Guadalcanal] PASSED [ 44%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Zagreb] PASSED [ 45%]PASSED [ 45%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[AustPASSED [ 45%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Argentina/Rio_Gallegos] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Juba] PASSED [ 45%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Virgin] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Cuba] PASSED [ 45%]PASSED [ 45%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/London] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Japan] PASSED [ 45%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Dawson] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Canada/Central] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Lome] PASSED [ 45%]PASSED [ 45%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Argentina/Jujuy] PASSED [ 45%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Seoul] PASSED [ 45%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Havana] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Antarctica/DumontDUrville] PASSED [ 46%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Atlantic/Cape_Verde] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Noumea] PASSED [ 46%]PASSED [ 46%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Casablanca] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Antarctica/McMurdo] PASSED [ 46%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Etc/GMT-1] PASSED [ 46%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Tokyo] PASSED [ 46%]PASSED [ 46%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Lagos] PASSED [ 46%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Asmara] PASSED [ 46%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Astrakhan] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Tallinn] PASSED [ 46%]PASSED [ 46%]ormatter.py::TestFormatterFormatToken::test_timezone_formatter[America/North_Dakota/New_Salem] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Ouagadougou] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Australia/Currie] PASSED [ 46%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Muscat] PASSED [ 47%]
tPASSED [ 47%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/San_Marino] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Turkey] PASSED [ 47%]PASSED [ 47%]ormatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Sarajevo] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Dublin] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Port_Moresby] PASSED [ 47%]PASSED [ 47%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Fiji] PASSED [ 47%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Mazatlan] PASSED [ 47%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Easter] PASSED [ 47%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[MST] PASSED [ 47%]PASSED [ 47%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Cayman] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Montreal] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Indian/Antananarivo] PASSED [ 47%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Conakry] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Costa_Rica] PASSED [ 48%]PASSED [ 48%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Mexico/General] PASSED [ 48%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Juneau] PASSED [ 48%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Kiev] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Hermosillo] PASSED [ 48%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Rangoon] PASSED [ 48%]PASSED [ 48%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Indian/Cocos] PASSED [ 48%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Macao] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Kirov] PASSED [ 48%]PASSED [ 48%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Nauru] PASSED [ 48%]PASSED [ 48%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Nouakchott] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/St_Barthelemy] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Indian/Mahe] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Funafuti] PASSED [ 49%]PASSED [ 49%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Argentina/ComodRivadavia] PASSED [ 49%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[MET] PASSED [ 49%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Mexico/BajaNorte] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Europe/Budapest] PASSED [ 49%]PASSED [ 49%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Pacific/Niue] PASSED [ 49%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Lower_Princes] PASSED [ 49%]PASSED [ 49%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[America/Catamarca] 
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Khandyga] PASSED [ 49%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Africa/Blantyre] PASSED [ 49%]
tests/test_formatter.py::TestFormatterFormatToken::test_timezone_formatter[Asia/Urumqi] PASSED [ 49%]PASSED     [ 49%]
tests/test_formatter.py::TestFormatterFormatTPASSED      [ 50%]
tests/test_formatter.py::TestFormatterFormatToken::test_nonsense PASSED  [ 50%]
tests/test_formatter.py::TestFormatterFormatToken::test_escape PASSED    [ 50%]
tests/test_formatter.py::TestFormatterBuiltinFormats::test_atom 
tests/test_formatter.py::TestFormatterBuiltinFormats::test_cookie 
tests/test_formatter.py::TestFormatterBuiltinFormats::test_rfc_822 PASSED [ 50%]PASSED [ 50%]
tests/test_formatter.py::TestFormatterBuiltinFormats::test_rfc_1036 PASSED [ 50%]
tests/test_formatter.py::TestFormatterBuiltinFormats::test_rfc_1123 PASSED [ 50%]
tests/test_formatter.py::TestFormatterBuiltinFormats::test_rfc_2822 
tests/test_formatter.py::TestFormatterBuiltinFormats::test_rfc3339 PASSED [ 50%]
tests/test_formatter.py::TestFormatterBuiltinFormats::test_rss 
tests/test_formatter.py::TestFormatterBuiltinFormats::test_w3c PASSED    [ 50%]
tests/test_locales.py::TestLocaleValidation::test_locale_validation 
tests/test_locales.py::TestModule::test_get_locale 
tests/test_locales.py::TestModule::test_get_locale_by_class_name PASSED  [ 50%]
tests/test_locales.py::TestModule::test_locales PASSED                   [ 50%]
tests/test_locales.py::TestEnglishLocale::test_describe PASSED           [ 51%]
tests/test_locales.py::TestEnglishLocale::test_format_timeframe PASSED   [ 51%]
tests/test_locales.py::TestEnglishLocale::test_format_relative_now PASSED [ 51%]
tests/test_locales.py::TestEnglishLocale::test_format_relative_past PASSED [ 51%]PASSED [ 51%]
tests/test_locales.py::TestEnglishLocale::test_ordinal_number PASSED     [ 51%]
tests/test_locales.py::TestEnglishLocale::test_meridian_invalid_token PASSED [ 51%]
tests/test_locales.py::TestItalianLocale::test_ordinal_number PASSED     [ 51%]
tests/test_locales.py::TestSpanishLocale::test_ordinal_number 
tests/test_locales.py::TestSpanishLocale::test_format_timeframe PASSED   [ 51%]
tests/test_locales.py::TestFrenchLocale::test_ordinal_number PASSED      [ 51%]
tests/test_locales.py::TestFrenchLocale::test_month_abbreviation PASSED  [ 51%]
tests/test_locales.py::TestRussianLocale::test_plurals2 PASSED           [ 51%]
tests/PASSED             [ 51%]shLocale::test_plurals 
tests/test_locales.py::TestIcelandicLocale::test_format_timeframe PASSED [ 51%]
tests/test_locales.py::TestMalayalamLocale::test_format_timeframe PASSED [ 51%]
tests/test_locales.py::TestMalayalamLocale::test_format_relative_now 
tests/test_locales.py::TestMalayalamLocale::test_format_relative_past PASSED [ 52%]
tests/test_locales.py::TestMalayalamLocale::test_format_relative_future 
tests/test_locales.py::TestHindiLocale::test_format_timeframe PASSED     [ 52%]
tests/test_locales.py::TestHindiLocale::test_format_relative_now PASSED  [ 52%]
tests/test_locales.py::TestHindiLocale::test_format_relative_past PASSED [ 52%]PASSED [ 52%]
tests/test_locales.py::TestCzechLocale::test_format_timeframe PASSED     [ 52%]
tests/test_locales.py::TestCzechLocale::test_format_relative_now PASSED  [ 52%]PASSED [ 52%]
tests/test_locales.py::TestCzechLocale::test_format_relative_past 
tests/test_locales.py::TestSlovakLocale::test_format_timeframe 
tests/test_locales.py::TestSlovakLocale::test_format_relative_now PASSED [ 52%]
tests/test_locales.py::TestSlovakLocale::test_format_relative_past PASSED [ 52%]
tests/test_locales.py::TestBulgarianLocale::test_plurals2 PASSED         [ 52%]
tests/test_locales.py::TestMacedonianLocale::test_singles_mk PASSED      [ 53%]
tests/test_locales.py::TestMacedonianLocale::test_meridians_mk PASSED    [ 53%]
tests/test_locales.py::TestMacedonianLocale::test_describe_mk PASSED     [ 53%]PASSED     [ 53%]
tests/test_locales.py::TestMacedonianLocale::test_plurals_mk PASSED      [ 53%]
tests/test_locales.py::TestMacedonianLocale::test_multi_describe_mk PASSED [ 53%]
tests/test_locales.py::TestHebrewLocale::test_couple_of_timeframe 
tests/test_locales.py::TestHebrewLocale::test_describe_multi PASSED      [ 53%]
tests/test_locales.py::TestMarathiLocale::test_dateCoreFunctionality 
tests/test_locales.py::TestMarathiLocale::test_format_timeframe PASSED   [ 53%]
tests/test_locales.py::TestMarathiLocale::test_format_relative_now PASSED [ 53%]PASSED [ 53%]
tests/test_locales.py::TestMarathiLocale::test_format_relative_future 
tests/test_locales.py::TestMarathiLocale::test_ordinal_number PASSED     [ 53%]
tests/test_locales.py::TestFinnishLocale::test_format_timeframe PASSED   [ 53%]
tests/test_locales.py::TestFinnishLocale::test_format_relative_now PASSED [ 53%]
tests/test_locales.py::TestFinnishLocale::test_format_relative_past 
tests/test_locales.py::TestFinnishLocale::test_format_relative_future PASSED [ 54%]
tests/test_locales.py::TestFinnishLocale::test_ordinal_number 
tests/test_locales.py::TestGermanLocale::test_ordinal_number 
tests/test_locales.py::TestGermanLocale::test_define PASSED              [ 54%]PASSED             [ 54%]
tests/test_locales.py::TestHungarianLocale::test_format_timeframe PASSED [ 54%]
tests/test_locales.py::TestEsperantoLocale::test_format_timeframe 
tests/test_locales.py::TestEsperantoLocale::test_ordinal_number 
tests/test_locales.py::TestThaiLocale::test_year_full 
tests/test_locales.py::TestThaiLocale::test_year_abbreviation 
tests/test_locales.py::TestThaiLocale::test_format_relative_now PASSED   [ 54%]
tests/test_locales.py::TestThaiLocale::test_format_relative_past 
tests/test_locales.py::TestThaiLocale::test_format_relative_future 
tests/test_locales.py::TestBengaliLocale::test_ordinal_number 
tests/test_locales.py::TestRomanianLocale::test_timeframes 
tests/test_locales.py::TestRomanianLocale::test_relative_timeframes PASSED [ 54%]
tests/test_locales.py::TestArabicLocale::test_timeframes PASSED          [ 54%]
tests/test_locales.py::TestNepaliLocale::test_format_timeframe 
tests/test_locales.py::TestNepaliLocale::test_format_relative_now PASSED [ 55%]
tests/test_locales.py::TestNepaliLocale::test_format_relative_future 
tests/test_locales.py::TestNepaliLocale::test_format_relative_past 
tests/test_locales.py::TestIndonesianLocale::test_timeframes PASSED      [ 55%]PASSED [ 55%]
tests/test_locales.py::TestIndonesianLocale::test_format_relative_past PASSED [ 55%]
tests/test_locales.py::TestIndonesianLocale::test_format_relative_future PASSED [ 55%]
tests/test_locales.py::TestTagalogLocale::test_singles_tl PASSED         [ 55%]PASSED       [ 55%]
tests/test_locales.py::TestTagalogLocale::test_describe_tl PASSED        [ 55%]PASSED        [ 55%]py::TestTagalogLocale::test_relative_tl 
tests/test_locales.py::TestTagalogLocale::test_plurals_tl PASSED         [ 55%]PASSED  [ 55%]
tests/test_locales.py::TestTagalogLocale::test_ordinal_number_tl 
tests/test_locales.py::TestEstonianLocale::test_format_timeframe 
tests/test_locales.py::TestPortugueseLocale::test_format_timeframe 
tests/test_locales.py::TestBrazilianPortugueseLocale::test_format_timeframe PASSED [ 56%]
tests/test_locales.py::TestHongKongLocale::test_format_timeframe 
tests/test_locales.py::TestChineseTWLocale::test_format_timeframe PASSED [ 56%]
tests/test_locales.py::TestSwahiliLocale::test_format_timeframe PASSED   [ 56%]
tests/test_locales.py::TestSwahiliLocale::test_format_relative_now 
tests/test_locales.py::TestSwahiliLocale::test_format_relative_past 
tests/test_locales.py::TestSwahiliLocale::test_format_relative_future 
tests/test_locales.py::TestKoreanLocale::test_format_timeframe PASSED    [ 56%]
tests/test_locales.py::TestKoreanLocale::test_format_relative PASSED     [ 56%]
tests/test_locales.py::TestKoreanLocale::test_ordinal_number PASSED      [ 56%]
tests/test_locales.py::TestJapaneseLocale::test_format_timeframe PASSED  [ 56%]PASSED  [ 56%]
tests/test_parser.py::TestDateTimeParser::test_parsPASSED [ 56%]
tests/test_parser.py::TestDateTimeParser::test_parse_multiformat_unself_expected_fail PASSED [ 56%]
tests/test_parser.py::TestDateTimeParser::test_parse_token_nonsense PASSED [ 56%]PASSED [ 56%]
tests/test_parser.py::TestDateTimeParser::test_parser_no_caching PASSED  [ 57%]
tests/test_parser.py::TestDateTimeParser::test_parser_1_line_caching PASSED [ 57%]
tests/test_parser.py::TestDateTimeParser::test_parser_multiple_line_caching PASSED [ 57%]
tests/test_parser.py::TestDateTimeParser::test_YY_and_YYYY_format_list PASSED [ 57%]
tests/test_parser.py::TestDateTimeParser::test_timestamp_format_list PASSED [ 57%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_list PASSED    [ 57%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_unrecognized_token PASSED [ 57%]PASSED [ 57%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_separators PASSED [ 57%]PASSED [ 57%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_year_two_digit PASSED [ 57%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_timestamp PASSED [ 57%]PASSED [ 57%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_expanded_timestamp PASSED [ 57%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_names 
tests/test_parser.py::TestDateTimeParserParse::test_parse_pm PASSED      [ 57%]PASSED [ 57%]arser.py::TestDateTimeParserParse::test_parse_tz_hours_only PASSED   [ 58%]
tests/test_parser.py::TestDateTimeParserParse::tePASSED [ 58%]
tests/test_parser.pyPASSED [ 58%]eParserParse::test_parse_tz_name_zzz[America/Vancouver] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Paramaribo] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[US/Aleutian] PASSED [ 58%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Enderbury] PASSED [ 58%]PASSED [ 58%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Etc/GPASSED [ 58%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Bogota] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Makassar] PASSED [ 58%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[GMT] PASSED [ 58%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Damascus] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Universal] PASSED [ 58%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Metlakatla] PASSED [ 58%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Etc/GMT+4] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Los_Angeles] PASSED [ 58%]PASSED [ 59%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Indiana/Vincennes] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Porto-Novo] PASSED [ 59%]PASSED [ 59%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Bahrain] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Cambridge_Bay] PASSED [ 59%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Ulan_Bator] PASSED [ 59%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Guyana] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Israel] PASSED [ 59%]PASSED [ 59%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Mendoza] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Apia] PASSED [ 59%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Chihuahua] PASSED [ 59%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Etc/GMT-14] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Brazzaville] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Boa_Vista] PASSED [ 59%]PASSED [ 59%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Mexico_City] PASSED [ 60%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Australia/Queensland] PASSED [ 60%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Creston] PASSED [ 60%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Truk] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Belize] PASSED [ 60%]PASSED [ 60%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Johnston] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Norfolk] PASSED [ 60%]PASSED [ 60%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Anguilla] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Pangnirtung] PASSED [ 60%]PASSED [ 60%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Atlantic/Stanley] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Belem] PASSED [ 60%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Cuiaba] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Tahiti] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Dili] PASSED [ 60%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Bahia_Banderas] PASSED [ 61%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Etc/GMT-13] PASSED [ 61%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Galapagos] PASSED [ 61%]PASSED [ 61%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Zulu] PASSED [ 61%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Moncton] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Skopje] PASSED [ 61%]PASSED [ 61%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Argentina/Buenos_Aires] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Krasnoyarsk] PASSED [ 61%]PASSED [ 61%]arser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Atlantic/Jan_Mayen] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Addis_Ababa] PASSED [ 61%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Eire] PASSED [ 61%]PASSED [ 61%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[AsiPASSED [ 61%]PASSED [ 61%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Etc/GMT]  PASSED [ 62%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Ashgabat] PASSED [ 62%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Australia/Sydney] PASSED [ 62%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Indiana/Vevay] PASSED [ 62%]PASSED [ 62%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Brazil/Acre] PASSED [ 62%]PASSED [ 62%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Indian/Chagos] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Nome] PASSED [ 62%]PASSED [ 62%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/North_Dakota/Beulah] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Recife] PASSED [ 62%]PASSED [ 62%]arser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Luxembourg] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[UTC] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Samoa] PASSED [ 62%]PASSED [ 62%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Paris] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Singapore] PASSED [ 63%]PASSED [ 63%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Efate] P
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/St_Thomas] PASSED [ 63%]PASSED [ 63%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[GMT+0] PASSED [ 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Madrid] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Rankin_Inlet] PASSED [ 63%]PASSED [ 63%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Australia/West] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Dakar] PASSED [ 63%]PASSED [ 63%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Punta_Arenas] PASSED [ 63%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Indiana/Tell_City] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Tirane] PASSED [ 63%]PASSED [ 63%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Kwajalein] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[GMT-0] PASSED [ 64%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Rarotonga] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Guernsey] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Australia/Canberra] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Sakhalin] PASSED [ 64%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Windhoek] PASSED [ 64%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Chongqing] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Regina] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Atlantic/Azores] PASSED [ 64%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Qostanay] PASSED [ 64%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Dacca] PASSED [ 64%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Ashkhabad] PASSED [ 64%]PASSED [ 64%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Campo_Grande] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Busingen] PASSED [ 64%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/St_Vincent] PASSED [ 64%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Midway] PASSED [ 65%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Samarkand] PASSED [ 65%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[US/East-Indiana] PASSED [ 65%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Guam] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Kinshasa] PASSED [ 65%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Tomsk] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Swift_Current] PASSED [ 65%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Etc/GMT-2] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Jamaica] PASSED [ 65%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Indian/Mauritius] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Tehran] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Australia/Tasmania] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Tbilisi] PASSED [ 65%]PASSED [ 65%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[US/Pacific-New] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Athens] PASSED [ 65%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Port-au-Prince] PASSED [ 65%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Argentina/Salta] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Aqtau] PASSED [ 66%]PASSED [ 66%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Bamako] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Bangui] PASSED [ 66%]PASSED [ 66%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Singapore] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Nassau] PASSED [ 66%]PASSED [ 66%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Santarem] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Etc/GMT0] PASSED [ 66%]PASSED [ 66%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Antarctica/Davis] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Maceio] PASSED [ 66%]PASSED [ 66%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Magadan] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[EET] PASSED [ 66%]PASSED [ 67%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Timbuktu] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Kathmandu] PASSED [ 67%]PASSED [ 67%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[W-SU] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Rosario] PASSED [ 67%]PASSED [ 67%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Kuala_Lumpur] PASSED [ 67%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Accra] PASSED [ 67%]PASSED [ 67%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Porto_Acre] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Kampala] PASSED [ 67%]PASSED [ 67%]arser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Ujung_Pandang] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Monrovia] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Karachi] PASSED [ 67%]PASSED [ 67%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[IndiaPASSED [ 68%]PASSED [ 68%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Belgrade] PASSED [ 68%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Etc/Greenwich] PASSED [ 68%]PASSED [ 68%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Phoenix] PASSED [ 68%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[US/Alaska] PASSED [ 68%]PASSED [ 68%]arser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Gaza] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Yakutat] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Canada/Newfoundland] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Pontianak] PASSED [ 68%]PASSED [ 68%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Palau] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Baku] PASSED [ 68%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Bangkok] PASSED [ 68%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Hanoi] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[PST8PDT] PASSED [ 68%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Prague] PASSED [ 69%]PASSED [ 69%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Australia/Brisbane] PASSED [ 69%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Atlantic/South_Georgia] PASSED [ 69%]PASSED [ 69%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Belfast] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Aqtobe] PASSED [ 69%]PASSED [ 69%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Etc/GMT-8] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Istanbul] PASSED [ 69%]PASSED [ 69%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[AfrPASSED [ 69%]PASSED [ 69%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Tijuana] PASSED [ 69%]PASSED [ 69%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[EPASSED [ 69%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Volgograd] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Lisbon] PASSED [ 70%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Dar_es_Salaam] PASSED [ 70%]PASSED [ 70%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Jamaica] PASSED [ 70%]PASSED [ 70%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Fakaofo] PASSED [ 70%]PASSED [ 70%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Wake] PASSED [ 70%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Argentina/Catamarca] PASSED [ 70%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Istanbul] PASSED [ 70%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[UCT] PASSED [ 70%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Colombo] PASSED [ 70%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Porto_Velho] PASSED [ 70%]PASSED [ 70%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Thule] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Gambier] PASSED [ 70%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Etc/GMT-4] PASSED [ 71%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Port_of_Spain] PASSED [ 71%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Miquelon] PASSED [ 71%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Douala] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Kosrae] PASSED [ 71%]PASSED [ 71%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Helsinki] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Etc/Universal] PASSED [ 71%]PASSED [ 71%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/El_Salvador] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[NZ] PASSED [ 71%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Etc/GMT-0] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Monaco] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Moscow] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Kaliningrad] PASSED [ 71%]PASSED [ 71%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Danmarkshavn] PASSED [ 71%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Fortaleza] PASSED [ 72%]PASSED [ 72%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Saipan] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Argentina/San_Juan] PASSED [ 72%]PASSED [ 72%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[US/Mountain] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Australia/Melbourne] PASSED [ 72%]PASSED [ 72%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Cairo] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Pago_Pago] PASSED [ 72%]PASSED [ 72%]arser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Tarawa] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Montserrat] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[US/Hawaii] PASSED [ 72%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Atlantic/Bermuda] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Kiritimati] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Kigali] PASSED [ 72%]PASSED [ 72%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Guatemala] PASSED [ 73%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Sao_Paulo] PASSED [ 73%]PASSED [ 73%]arser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[US/Arizona] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Inuvik] PASSED [ 73%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Glace_Bay] PASSED [ 73%]PASSED [ 73%]arser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Wallis] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Honolulu] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Egypt] PASSED [ 73%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Lusaka] PASSED [ 73%]PASSED [ 73%]arser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Etc/UTC] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Tiraspol] PASSED [ 73%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Etc/GMT-9] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Malta] PASSED [ 73%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Ensenada] PASSED [ 73%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[CST6CDT] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Argentina/Tucuman] PASSED [ 73%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Amman] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Vatican] PASSED [ 74%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Canada/Atlantic] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Indiana/Petersburg] PASSED [ 74%]PASSED [ 74%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Irkutsk] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Tashkent] PASSED [ 74%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Navajo] PASSED [ 74%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Copenhagen] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/La_Paz] PASSED [ 74%]PASSED [ 74%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Australia/Adelaide] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Thunder_Bay] PASSED [ 74%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Antarctica/Mawson] PASSED [ 74%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Manaus] PASSED [ 74%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Vienna] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Menominee] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Cancun] PASSED [ 75%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Etc/GMT+6] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Buenos_Aires] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Australia/Eucla] PASSED [ 75%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Mariehamn] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Knox_IN] PASSED [ 75%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Brazil/West] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[US/Michigan] PASSED [ 75%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[EST5EDT] PASSED [ 75%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Etc/GMT+9] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Chicago] PASSED [ 75%]PASSED [ 75%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Australia/Darwin] PASSED [ 75%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Phnom_Penh] PASSED [ 75%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Ulyanovsk] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/New_York] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Etc/GMT+11] PASSED [ 75%]PASSED [ 76%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Australia/LHI] PASSED [ 76%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Sitka] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Luanda] PASSED [ 76%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Etc/GMT-7] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Bahia] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Montevideo] PASSED [ 76%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Hebron] PASSED [ 76%]PASSED [ 76%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Hong_Kong] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Guayaquil] PASSED [ 76%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Australia/Lindeman] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Indian/Mayotte] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Brunei] PASSED [ 76%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Antarctica/Macquarie] PASSED [ 76%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Canada/Eastern] PASSED [ 76%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Canada/Saskatchewan] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Dominica] PASSED [ 77%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Antarctica/Rothera] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Rio_Branco] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Etc/GMT-10] PASSED [ 77%]PASSED [ 77%]arser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Grand_Turk] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Atyrau] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/St_Johns] PASSED [ 77%]PASSED [ 77%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Oral] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Etc/GMT+3] PASSED [ 77%]PASSED [ 77%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Antarctica/Troll] PASSED [ 77%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Jujuy] PASSED [ 77%]PASSED [ 77%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Andorra] PASSED [ 77%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Yakutsk] PASSED [ 77%]PASSED [ 78%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Ulaanbaatar] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Scoresbysund] PASSED [ 78%]PASSED [ 78%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Canada/Pacific] PASSED [ 78%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Mogadishu] PASSED [ 78%]PASSED [ 78%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Chuuk] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Hovd] PASSED [ 78%]PASSED [ 78%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Vilnius] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Atlantic/Madeira] PASSED [ 78%]PASSED [ 78%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Tongatapu] PASSED [ 78%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Riga] PASSED [ 78%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Indian/Comoro] PASSED [ 78%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Matamoros] PASSED [ 78%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Toronto] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Famagusta] PASSED [ 79%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Calcutta] PASSED [ 79%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Freetown] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Kuching] PASSED [ 79%]PASSED [ 79%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Coral_Harbour] PASSED [ 79%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Maputo] PASSED [ 79%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[GB-Eire] PASSED [ 79%]PASSED [ 79%]arser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Etc/GMT-5] PASSED [ 79%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Zurich] PASSED [ 79%]PASSED [ 79%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[AsiPASSED [ 79%]PASSED [ 79%]arser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Santo_Domingo] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Iceland] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Etc/GMT-12] PASSED [ 80%]PASSED [ 80%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Tripoli] PASSED [ 80%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Fort_Wayne] PASSED [ 80%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Greenwich] PASSED [ 80%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Manila] PASSED [ 80%]PASSED [ 80%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Uzhgorod] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Australia/Broken_Hill] PASSED [ 80%]PASSED [ 80%]arser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Ho_Chi_Minh] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Etc/GMT-3] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Gibraltar] PASSED [ 80%]PASSED [ 80%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Etc/Zulu] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Novokuznetsk] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Brazil/DeNoronha] PASSED [ 80%]PASSED [ 80%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[APASSED [ 81%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Caracas] PASSED [ 81%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Pitcairn] PASSED [ 81%]PASSED [ 81%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Vientiane] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Anadyr] PASSED [ 81%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Etc/GMT-6] PASSED [ 81%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Antarctica/Palmer] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Libya] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Kamchatka] PASSED [ 81%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Chile/Continental] PASSED [ 81%]PASSED [ 81%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Halifax] PASSED [ 81%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Dubai] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Algiers] PASSED [ 81%]PASSED [ 81%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[PacifPASSED [ 81%]PASSED [ 82%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Niamey] PASSED [ 82%]PASSED [ 82%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Etc/GMT+5] PASSED [ 82%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Puerto_Rico] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[GB] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Thimphu] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Libreville] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Dushanbe] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Kralendijk] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Berlin] PASSED [ 82%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Kuwait] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Merida] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Indianapolis] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Abidjan] PASSED [ 82%]PASSED [ 82%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Ljubljana] PASSED [ 83%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Canada/Mountain] PASSED [ 83%]PASSED [ 83%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[EST] PAS
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Atlantic/Canary] PASSED [ 83%]PASSED [ 83%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Factory] PASSED [ 83%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[ROC] PASSED [ 83%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Blanc-Sablon] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Jayapura] PASSED [ 83%]PASSED [ 83%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Auckland] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Gaborone] PASSED [ 83%]PASSED [ 83%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Santiago] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Macau] PASSED [ 83%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Kwajalein] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Qatar] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Brazil/East] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Vladivostok] PASSED [ 84%]PASSED [ 84%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/St_Lucia] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Banjul] PASSED [ 84%]PASSED [ 84%]arser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Yekaterinburg] PASSED [ 84%]arser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Podgorica] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Tortola] PASSED [ 84%]PASSED [ 84%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Canada/Yukon] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Bishkek] PASSED [ 84%]PASSED [ 84%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Argentina/San_Luis] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Bucharest] PASSED [ 84%]PASSED [ 84%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Arctic/Longyearbyen] PASSED [ 84%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[CET] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Cayenne] PASSED [ 85%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Guadeloupe] PASSED [ 85%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Johannesburg] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Jersey] PASSED [ 85%]PASSED [ 85%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[APASSED [ 85%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Asmera] PASSED [ 85%]PASSED [ 85%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[AsPASSED [ 85%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Argentina/Mendoza] PASSED [ 85%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Chatham] PASSED [ 85%]PASSED [ 85%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Managua] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Tegucigalpa] PASSED [ 85%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Barbados] PASSED [ 85%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Fort_Nelson] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Tel_Aviv] PASSED [ 86%]PASSED [ 86%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Choibalsan] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Warsaw] PASSED [ 86%]PASSED [ 86%]arser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Simferopol] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Denver] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Atlantic/Reykjavik] PASSED [ 86%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Sofia] PASSED [ 86%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Oslo] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[MST7MDT] PASSED [ 86%]PASSED [ 86%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Monterrey] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Indian/Christmas] PASSED [ 86%]PASSED [ 86%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Detroit] PASSED [ 86%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Dhaka] PASSED [ 86%]PASSED [ 87%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Rome] PASSED [ 87%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Indian/Reunion] PASSED [ 87%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Yerevan] PASSED [ 87%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Anchorage] PASSED [ 87%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Argentina/Cordoba] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Yellowknife] PASSED [ 87%]PASSED [ 87%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Stockholm] PASSED [ 87%]PASSED [ 87%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Australia/Perth] PASSED [ 87%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Kabul] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Poland] PASSED [ 87%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Whitehorse] PASSED [ 87%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Etc/GMT-11] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[US/Samoa] PASSED [ 87%]PASSED [ 87%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Almaty] PASSED [ 88%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Sao_Tome] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Noronha] PASSED [ 88%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Resolute] PASSED [ 88%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Kentucky/Louisville] PASSED [ 88%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Beirut] PASSED [ 88%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[US/Eastern] PASSED [ 88%]PASSED [ 88%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[US/Central] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Adak] PASSED [ 88%]PASSED [ 88%]arser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Minsk] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Kashgar] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Indiana/Knox] PASSED [ 88%]PASSED [ 88%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Zagreb] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Marigot] PASSED [ 88%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Australia/Lord_Howe] PASSED [ 89%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Argentina/Rio_Gallegos] PASSED [ 89%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Juba] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Virgin] PASSED [ 89%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Cuba] PASSED [ 89%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Boise] PASSED [ 89%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/London] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Japan] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Dawson] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Canada/Central] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Lome] PASSED [ 89%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Chile/EasterIsland] PASSED [ 89%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Argentina/Jujuy] PASSED [ 89%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Seoul] PASSED [ 89%]PASSED [ 89%]arser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Havana] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Antarctica/DumontDUrville] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Atlantic/Cape_Verde] PASSED [ 89%]PASSED [ 90%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Atlantic/Faroe] PASSED [ 90%]PASSED [ 90%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[AntarcPASSED [ 90%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Etc/GMT-1] PASSED [ 90%]PASSED [ 90%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzzPASSED [ 90%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Lagos] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Asmara] PASSED [ 90%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Astrakhan] PASSED [ 90%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Tallinn] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/North_Dakota/New_Salem] PASSED [ 90%]PASSED [ 90%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Australia/Currie] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Maseru] PASSED [ 90%]PASSED [ 90%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/St_Kitts] PASSED [ 90%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/San_Marino] PASSED [ 91%]PASSED [ 91%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Sarajevo] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Dublin] PASSED [ 91%]PASSED [ 91%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Goose_Bay] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Fiji] PASSED [ 91%]PASSED [ 91%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Easter] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[MST] PASSED [ 91%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Portugal] PASSED [ 91%]PASSED [ 91%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Montreal] PASSED [ 91%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Indian/Antananarivo] PASSED [ 91%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Conakry] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Costa_Rica] PASSED [ 91%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/El_Aaiun] PASSED [ 92%]PASSED [ 92%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Juneau] PASSED [ 92%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Kiev] PASSED [ 92%]PASSED [ 92%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Rangoon] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Mexico/BajaSur] PASSED [ 92%]PASSED [ 92%]arser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Indian/Cocos] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Macao] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Kirov] PASSED [ 92%]PASSED [ 92%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Nauru] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Indiana/Winamac] PASSED [ 92%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Nouakchott] PASSED [ 92%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/St_Barthelemy] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Indian/Mahe] PASSED [ 92%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Pacific/Funafuti] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Atlantic/St_Helena] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[America/Argentina/ComodRivadavia] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[MET] PASSED [ 93%]PASSED [ 93%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Europe/Budapest] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Aden] PASSED [ 93%]PASSED [ 93%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[APASSED [ 93%]Princes] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Omsk] PASSED [ 93%]PASSED [ 93%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Asia/Khandyga] 
tests/test_parser.py::TestDateTimeParserParse::test_parse_tz_name_zzz[Africa/Blantyre] PASSED [ 93%]PASSED [ 93%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_subsecond PA
tests/test_parser.py::TestDateTimeParserParse::test_parse_subsecond_rounding PASSED [ 93%]PASSED [ 93%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_long_year flow PASSED [ 93%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_with_extra_words_at_start_and_end_invalid PASSED [ 94%]PASSED [ 94%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_with_punctuation_fences id PASSED [ 94%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_YYYY_DDDD PASSED [ 94%]
tests/test_parser.py::TestPASSED [ 94%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_YYYY_MM_DDDD PASSED [ 94%]PASSED [ 94%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_DDDD_only PASSED [ 94%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_ddd_and_dddd PASSED [ 94%]
tests/test_parser.py::TestDateTimeParserParse::test_parse_ddd_and_dddd_ignore_case 
tests/test_parser.py::TestDateTimeParserParse::test_parse_ddd_and_dddd_then_format 
tests/test_parser.py::TestDateTimeParserParse::test_parse_HH_24 
tests/test_parser.py::TestDateTimeParserParse::test_parse_W 
tests/test_parser.py::TestDateTimeParserParse::test_parse_normalize_whitespace PASSED [ 94%]
tests/test_parser.py::TestDateTimeParserRegex::test_format_year 
tests/test_parser.py::TestDateTimeParserRegex::test_format_month PASSED  [ 95%]
tests/test_parser.py::TestDateTimeParserRegex::test_format_day PASSED    [ 95%]
tests/test_parser.py::TestDateTimeParserRegex::test_format_hour 
tests/test_parser.py::TestDateTimeParserRegex::test_format_minute PASSED [ 95%]
tests/test_parser.py::TestDateTimeParserRegex::test_format_second PASSED [ 95%]
tests/test_parser.py::TestDateTimeParserRegex::test_format_subsecond PASSED [ 95%]
tests/test_parser.py::TestDateTimeParserRegex::test_format_tz PASSED     [ 95%]PASSED  [ 95%]
tests/test_parser.py::TestDateTimeParserRegex::test_format_timestamp PASSED [ 95%]PASSED [ 95%]
tests/test_parser.py::TestDateTimeParserRegex::test_escape li PASSED        [ 95%]PASSED   [ 95%]
tests/test_parser.py::TestDateTimeParserRegex::test_month_abbreviations PASSED [ 95%]
tests/test_parser.py::TestDateTimeParserRegex::test_digits 
tests/test_parser.py::TestDateTimeParserRegex::test_tz 
tests/test_parser.py::TestDateTimeParserRegex::test_timestamp PASSED     [ 95%]
tests/test_parser.py::TestDateTimeParserRegex::test_timestamp_milli 
tests/test_parser.py::TestDateTimeParserRegex::test_time PASSED          [ 96%]
tests/test_parser.py::TestDateTimeParserISO::test_YYYY 
tests/test_parser.py::TestDateTimeParserISO::test_YYYY_DDDD PASSED       [ 96%]
tests/test_parser.py::TestDateTimeParserISO::test_YYYY_DDDD_HH_mm_ssZ PASSED [ 96%]PASSED    [ 96%]
tests/test_parser.py::TestDateTimeParserISO::tePASSED         [ 96%]
tests/test_parser.py::TestDateTimeParserISO::test_YYYY_MM_DD PASSED      [ 96%]
tests/test_parser.py::TestDateTimeParserISO::test_YYYY_MM_DDTHH_mmZ PASSED [ 96%]PASSED [ 96%]
tests/test_parser.py::TestDateTimeParserISO::test_YYYY_MM_DDTHH PASSED   [ 96%]
tests/test_parser.py::TestDateTimeParserISO::test_YYYY_MM_DDTHHZ 
tests/test_parser.py::TestDateTimeParserISO::test_YYYY_MM_DDTHH_mm_ssZ PASSED [ 96%]PASSED [ 96%]
tests/test_parser.py::TestDateTimeParserISO::test_YYYY_MM_DD_HH_mmZ 
tests/test_parser.py::TestDateTimeParserISO::test_YYYY_MM_DD_HH_mm PASSED [ 96%]
tests/test_parser.py::TestDateTimeParserISO::test_YYYY_MM_DD_HH PASSED   [ 96%]
tests/test_parser.py::TestDateTimeParserISO::test_invalid_time 
tests/test_parser.py::TestDateTimeParserISO::test_YYYY_MM_DD_HH_mm_ssZ PASSED [ 97%]
tests/test_parser.py::TestDateTimeParserISO::test_YYYY_MM_DD_HH_mm_ss PASSED [ 97%]
tests/test_parser.py::TestDateTimeParserISO::test_YYYY_MM_DDTHH_mm_ss_S 
tests/test_parser.py::TestDateTimeParserISO::test_YYYY_MM_DDTHH_mm_ss_SZ PASSED [ 97%]
tests/test_parser.py::TestDateTimeParserISO::test_W PASSED               [ 97%]
tests/test_parser.py::TestDateTimeParserISO::test_invalid_Z PASSED       [ 97%]
tests/test_parser.py::TestDateTimeParserISO::test_parse_subsecond 
tests/test_parser.py::TestDateTimeParserISO::test_gnu_date PASSED        [ 97%]
tests/test_parser.py::TestDateTimeParserISO::test_isoformat PASSED       [ 97%]PASSED [ 97%]
tests/test_parser.py::TestDateTimeParserISO::test_parse_iso_with_leading_and_trailing_whitespace 
tests/test_parser.py::TestDateTimeParserISO::test_parse_iso_with_extra_words_at_start_and_end_invalid PASSED [ 97%]
tests/test_parser.py::TestDateTimeParserISO::test_iso8601_basic_format PASSED [ 97%]
tests/test_parser.py::TestDateTimeParserISO::test_midnight_end_day PASSED [ 97%]PASSED          [ 97%]
tests/test_parser.py::TestTzinfoParser::test_parse_utc 
tests/test_parser.py::TestTzinfoParser::test_parse_iso PASSED            [ 98%]
tests/test_parser.py::TestTzinfoParser::test_parse_str 
tests/test_parser.py::TestTzinfoParser::test_parse_fails 
tests/test_parser.py::TestDateTimeParserMonthName::test_shortmonth_capitalized PASSED [ 98%]
tests/test_parser.py::TestDateTimeParserMonthName::test_shortmonth_allupper PASSED [ 98%]
tests/test_parser.py::TestDateTimeParserMonthName::test_shortmonth_alllower PASSED [ 98%]
tests/test_parser.py::TestDateTimeParserMonthName::test_month_capitalized PASSED [ 98%]PASSED [ 98%]
tests/test_parser.py::TestDateTimeParserMonthName::test_moPASSED [ 98%]
tests/test_parser.py::TestDateTimeParserMonthName::test_localized_month_name 
tests/test_parser.py::TestDateTimeParserMonthName::test_localized_month_abbreviation PASSED [ 98%]
tests/test_parser.py::TestDateTimeParserMeridians::test_meridians_lowercase PASSED [ 98%]
tests/test_parser.py::TestDateTimeParserMeridians::test_meridians_capitalized PASSED [ 98%]PASSED [ 98%]
tests/test_parser.py::TestDateTimeParserMeridians::test_localized_meridiaPASSED [ 98%]
tests/test_parser.py::TestDateTimeParserMeridians::test_es_meridians PASSED [ 98%]PASSED [ 98%]arser.py::TestDateTimeParserMeridians::test_fr_meridians 
tests/test_parser.py::TestDateTimeParserMonthOrdinalDay::test_english PASSED [ 99%]
tests/test_parser.py::TestDateTimeParserMonthOrdinalDay::test_italian PASSED [ 99%]
tests/test_parser.py::TestDateTimeParserMonthOrdinalDay::test_spanish 
tests/test_parser.py::TestDateTimeParserMonthOrdinalDay::test_french PASSED [ 99%]
tests/test_parser.py::TestDateTimeParserSearchDate::test_parse_search PASSED [ 99%]PASSED [ 99%]arser.py::TestDateTimeParserSearchDate::test_parse_search_with_numbers 
tests/test_parser.py::TestDateTimeParserSearchDate::test_parse_search_with_names PASSED [ 99%]
tests/test_parser.py::TestDateTimeParserSearchDate::test_parse_search_locale_with_names PASSED [ 99%]
tests/test_parser.py::TestDateTimeParserSearchDate::test_parse_search_fails PASSED [ 99%]
tests/test_parser.py::TestDateTimeParserSearchDate::test_escape PASSED   [ 99%]PASSED          [ 99%]:TestFuzzInput::test_no_match_group 
tests/test_parser.py::TestFuzzInput::test_regex_module_error PASSED      [ 99%]
tests/test_util.py::TestUtil::test_next_weekday PASSED                   [ 99%]
tests/test_util.py::TestUtil::test_total_seconds 
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        6      0      0      0   100%
arrow/_version.py        1      0      0      0   100%
arrow/api.py            14      0      0      0   100%
arrow/arrow.py         481      0    220      0   100%
arrow/constants.py       6      0      0      0   100%
arrow/factory.py        75      0     48      0   100%
arrow/formatter.py      97      0     72      0   100%
arrow/locales.py       801      0    124      0   100%
arrow/parser.py        280      0    144      0   100%
arrow/util.py           41      0     18      0   100%
----------------------------------------------------------------
TOTAL                 1802      0    626      0   100%
Coverage XML written to file coverage.xml

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

======================= 1665 passed, 1 xfailed in 17.01s =======================
jadchaar commented 3 years ago

Don't worry about the xfail, all required tests are passing! We have a test that we are allowing failure for (pytest.xfail) after a recent change until we get around to further tweaking our humanize function!

pgogri commented 3 years ago

I see, thanks for fixing this issue!