Open rsb-23 opened 1 month ago
Unit tests fail if we change the name of class as below:
class TestIcalendar(unittest.TestCase):
class TestAIcalendar(unittest.TestCase):
def test_pytz_timezone_serializing is changing the tzinfo for other tests.
def test_pytz_timezone_serializing
Testcases should not interfere with each other.
[Unrelated] Few doctest failure on running pytest --doctest-modules.
pytest --doctest-modules
Issue
Unit tests fail if we change the name of class as below:
Reason
def test_pytz_timezone_serializing
is changing the tzinfo for other tests.Expectation
Testcases should not interfere with each other.