()
| 82 | |
| 83 | |
| 84 | def test_skipped_time_with_error(): |
| 85 | dt = datetime(2013, 3, 31, 2, 30, 45, 123456) |
| 86 | tz = timezone("Europe/Paris") |
| 87 | with pytest.raises(NonExistingTime): |
| 88 | tz.convert(dt, raise_on_unknown_times=True) |
| 89 | |
| 90 | |
| 91 | def test_repeated_time(): |