-
Notifications
You must be signed in to change notification settings - Fork 45
Closed
Labels
code healthImprove code readability, simplify maintenance and so onImprove code readability, simplify maintenance and so on
Description
There are two tarantool-python + Tarantool integration tests for datetime arithmetic that are skipped for now due to core bugs:
tarantool-python/test/suites/test_datetime.py
Lines 386 to 392 in 10adf37
@skip_or_run_datetime_test | |
@unittest.skip('See https://github.com/tarantool/tarantool/issues/7698') | |
def test_tarantool_datetime_subtraction_different_timezones(self): | |
case = self.datetime_subtraction_different_timezones_case | |
self.assertSequenceEqual(self.con.call('sub', case['arg_1'], case['arg_2']), | |
[case['res']]) |
tarantool-python/test/suites/test_datetime.py
Lines 522 to 528 in 10adf37
@skip_or_run_datetime_test | |
@unittest.skip('See https://github.com/tarantool/tarantool/issues/7700') | |
def test_tarantool_datetime_addition_winter_time_switch(self): | |
case = self.datetime_addition_winter_time_switch_case | |
self.assertSequenceEqual(self.con.call('add', case['arg_1'], case['arg_2']), | |
[case['res']]) |
This skips should be changed to conditional skips after Tarantool release (now bugs are fixed, but there is no tagged version with fix).
Metadata
Metadata
Assignees
Labels
code healthImprove code readability, simplify maintenance and so onImprove code readability, simplify maintenance and so on