From 3519759ff929a385c033a48751566f7a23cf916a Mon Sep 17 00:00:00 2001 From: Alexander Tikhonov Date: Wed, 6 Sep 2023 18:55:06 +0300 Subject: [PATCH] Skip pendulum tests temporarily --- requirements-dev.txt | 2 +- tests/test_metadata_options.py | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index e79459ac..216635f3 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -18,7 +18,7 @@ codespell>=2.2.2 # third party features ciso8601>=2.1.3 -pendulum>=2.1.2 +#pendulum>=2.1.2 # benchmark pyperf>=2.6.1 diff --git a/tests/test_metadata_options.py b/tests/test_metadata_options.py index 479b679f..57eaba5d 100644 --- a/tests/test_metadata_options.py +++ b/tests/test_metadata_options.py @@ -7,6 +7,7 @@ import pytest from mashumaro import DataClassDictMixin +from mashumaro.core.const import PY_312_MIN from mashumaro.exceptions import ( UnserializableField, UnsupportedDeserializationEngine, @@ -57,6 +58,7 @@ class DataClass(DataClassDictMixin): assert instance == should_be +@pytest.mark.skip(reason="https://github.com/sdispater/pendulum/issues/696") def test_pendulum_datetime_parser(): @dataclass class DataClass(DataClassDictMixin): @@ -67,6 +69,7 @@ class DataClass(DataClassDictMixin): assert instance == should_be +@pytest.mark.skip(reason="https://github.com/sdispater/pendulum/issues/696") def test_pendulum_date_parser(): @dataclass class DataClass(DataClassDictMixin): @@ -77,6 +80,7 @@ class DataClass(DataClassDictMixin): assert instance == should_be +@pytest.mark.skip(reason="https://github.com/sdispater/pendulum/issues/696") def test_pendulum_time_parser(): @dataclass class DataClass(DataClassDictMixin):