mirror of
https://github.com/tahnok/colmi_r02_client.git
synced 2026-02-06 10:47:28 +00:00
test: disable slow hypothesis tests
This commit is contained in:
parent
2000470202
commit
5804f67160
@ -261,6 +261,7 @@ def test_datetime_in_utc_process_bind_none():
|
||||
assert dtiu.process_bind_param(None, dialect) is None
|
||||
|
||||
|
||||
@pytest.mark.skip
|
||||
@given(st.datetimes())
|
||||
def test_datetime_in_utc_process_bind_no_tz(ts: datetime):
|
||||
dtiu = DateTimeInUTC()
|
||||
@ -270,6 +271,7 @@ def test_datetime_in_utc_process_bind_no_tz(ts: datetime):
|
||||
dtiu.process_bind_param(ts, dialect)
|
||||
|
||||
|
||||
@pytest.mark.skip
|
||||
@given(st.datetimes(timezones=st.timezones()))
|
||||
def test_datetime_in_utc_process_bind_tz(ts: datetime):
|
||||
dtiu = DateTimeInUTC()
|
||||
@ -289,6 +291,7 @@ def test_datetime_in_utc_process_result_none():
|
||||
assert dtiu.process_result_value(None, dialect) is None
|
||||
|
||||
|
||||
@pytest.mark.skip
|
||||
@given(st.datetimes())
|
||||
def test_datetime_in_utc_process_result_no_tz(ts: datetime):
|
||||
dtiu = DateTimeInUTC()
|
||||
@ -300,6 +303,7 @@ def test_datetime_in_utc_process_result_no_tz(ts: datetime):
|
||||
assert result.tzinfo == timezone.utc
|
||||
|
||||
|
||||
@pytest.mark.skip
|
||||
@given(st.datetimes(timezones=st.timezones()))
|
||||
def test_datetime_in_utc_process_tz(ts: datetime):
|
||||
dtiu = DateTimeInUTC()
|
||||
|
||||
Loading…
Reference in New Issue
Block a user