Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Skipif not PY3.6
  • Loading branch information
Matt Roeschke committed Jan 31, 2019
commit 83a7d31b242a50dd03078edbaf9f0ffdb20fb38e
3 changes: 2 additions & 1 deletion pandas/tests/scalar/timestamp/test_unary_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from pandas._libs.tslibs import conversion
from pandas._libs.tslibs.frequencies import INVALID_FREQ_ERR_MSG
from pandas.compat import PY3
from pandas.compat import PY3, PY36
import pandas.util._test_decorators as td

from pandas import NaT, Timestamp
Expand Down Expand Up @@ -329,6 +329,7 @@ def test_replace_dst_border(self):
expected = Timestamp('2013-11-3 03:00:00', tz='America/Chicago')
assert result == expected

@pytest.mark.skif(not PY36, reason='Fold not available until PY3.6')
@pytest.mark.parametrize('fold', [0, 1])
@pytest.mark.parametrize('tz', ['dateutil/Europe/London', 'Europe/London'])
def test_replace_dst_fold(self, fold, tz):
Expand Down