/dports/math/py-pandas/pandas-1.2.5/pandas/tests/indexes/datetimes/ |
H A D | test_ops.py | 45 def test_repeat_range(self, tz_naive_fixture): argument 46 tz = tz_naive_fixture 88 def test_repeat(self, tz_naive_fixture): argument 89 tz = tz_naive_fixture 126 def test_resolution(self, tz_naive_fixture, freq, expected): argument 127 tz = tz_naive_fixture 134 def test_value_counts_unique(self, tz_naive_fixture): argument 135 tz = tz_naive_fixture 234 tz = tz_naive_fixture 309 def test_nat(self, tz_naive_fixture): argument [all …]
|
H A D | test_scalar_compat.py | 105 def test_round(self, tz_naive_fixture): argument 106 tz = tz_naive_fixture 159 def test_no_rounding_occurs(self, tz_naive_fixture): argument 161 tz = tz_naive_fixture
|
H A D | test_shift.py | 20 def test_dti_shift_tzaware(self, tz_naive_fixture): 22 tz = tz_naive_fixture
|
H A D | test_insert.py | 28 def test_insert_empty_preserves_freq(self, tz_naive_fixture): argument 30 tz = tz_naive_fixture
|
H A D | test_constructors.py | 758 def test_construction_int_rountrip(self, tz_naive_fixture): argument 760 tz = tz_naive_fixture 901 def test_dti_constructor_years_only(self, tz_naive_fixture): argument 902 tz = tz_naive_fixture
|
H A D | test_datetime.py | 317 def test_factorize_tz(self, tz_naive_fixture, index_or_series): argument 318 tz = tz_naive_fixture
|
H A D | test_timezones.py | 845 def test_timetz_accessor(self, tz_naive_fixture): argument 847 tz = timezones.maybe_get_tz(tz_naive_fixture) 863 def test_dti_tz_conversion_freq(self, tz_naive_fixture): argument 866 assert t3.tz_localize(tz=tz_naive_fixture).freq == t3.freq
|
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/arithmetic/ |
H A D | test_datetime64.py | 50 tz = tz_naive_fixture 85 tz = tz_naive_fixture 109 tz = tz_naive_fixture 115 tz = tz_naive_fixture 139 tz = tz_naive_fixture 213 tz = tz_naive_fixture 382 tz = tz_naive_fixture 698 tz = tz_naive_fixture 804 tz = tz_naive_fixture 818 tz = tz_naive_fixture [all …]
|
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/series/methods/ |
H A D | test_combine_first.py | 78 def test_combine_first_dt_tz_values(self, tz_naive_fixture): argument 80 pd.DatetimeIndex(["20150101", "20150102", "20150103"], tz=tz_naive_fixture), 84 pd.DatetimeIndex(["20160514", "20160515", "20160516"], tz=tz_naive_fixture), 91 tz=tz_naive_fixture,
|
H A D | test_describe.py | 79 def test_describe_with_tz(self, tz_naive_fixture): argument 81 tz = tz_naive_fixture 82 name = str(tz_naive_fixture)
|
H A D | test_interpolate.py | 626 def test_interp_datetime64(self, method, tz_naive_fixture): argument 628 [1, np.nan, 3], index=date_range("1/1/2000", periods=3, tz=tz_naive_fixture) 633 index=date_range("1/1/2000", periods=3, tz=tz_naive_fixture),
|
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/tseries/frequencies/ |
H A D | test_inference.py | 254 def test_infer_freq_tz(tz_naive_fixture, expected, dates): 256 tz = tz_naive_fixture 272 def test_infer_freq_tz_transition(tz_naive_fixture, date_pair, freq): 274 tz = tz_naive_fixture
|
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/scalar/timestamp/ |
H A D | test_arithmetic.py | 88 def test_rsub_dtscalars(self, tz_naive_fixture): argument 91 ts = Timestamp.now(tz_naive_fixture) 96 if tz_naive_fixture is None:
|
H A D | test_timestamp.py | 142 def test_is_leap_year(self, tz_naive_fixture): 143 tz = tz_naive_fixture 386 def test_tz_conversion_freq(self, tz_naive_fixture): 389 assert t1.tz_localize(tz=tz_naive_fixture).freq == t1.freq
|
H A D | test_timezones.py | 432 def test_timestamp_timetz_equivalent_with_datetime_tz(self, tz_naive_fixture): 434 tz = timezones.maybe_get_tz(tz_naive_fixture)
|
H A D | test_unary_ops.py | 393 def test_normalize(self, tz_naive_fixture, arg): argument 394 tz = tz_naive_fixture
|
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/indexing/ |
H A D | test_at.py | 48 def test_at_setitem_expansion_series_dt64tz_value(self, tz_naive_fixture): argument 50 ts = Timestamp("2017-08-05 00:00:00+0100", tz=tz_naive_fixture)
|
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/series/indexing/ |
H A D | test_where.py | 427 def test_where_dt_tz_values(tz_naive_fixture): argument 429 pd.DatetimeIndex(["20150101", "20150102", "20150103"], tz=tz_naive_fixture) 432 pd.DatetimeIndex(["20160514", "20160515", "20160516"], tz=tz_naive_fixture) 437 pd.DatetimeIndex(["20150101", "20150102", "20160516"], tz=tz_naive_fixture)
|
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/frame/methods/ |
H A D | test_append.py | 189 def test_append_timestamps_aware_or_naive(self, tz_naive_fixture, timestamp): 191 tz = tz_naive_fixture
|
H A D | test_describe.py | 245 def test_describe_tz_values(self, tz_naive_fixture): argument 247 tz = tz_naive_fixture
|
H A D | test_reset_index.py | 394 def test_reset_index_datetime(self, tz_naive_fixture): 396 tz = tz_naive_fixture
|
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/arrays/ |
H A D | test_datetimes.py | 205 def test_setitem_str_impute_tz(self, tz_naive_fixture): argument 208 tz = tz_naive_fixture 471 def arr1d(self, tz_naive_fixture): argument 472 tz = tz_naive_fixture
|
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/reductions/ |
H A D | test_stat_reductions.py | 19 def test_dt64_mean(self, tz_naive_fixture, box): argument 20 tz = tz_naive_fixture
|
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/frame/indexing/ |
H A D | test_where.py | 592 def test_where_tz_values(self, tz_naive_fixture): 594 DatetimeIndex(["20150101", "20150102", "20150103"], tz=tz_naive_fixture), 598 DatetimeIndex(["20150103", "20150104", "20150105"], tz=tz_naive_fixture), 603 DatetimeIndex(["20150101", "20150102", "20150105"], tz=tz_naive_fixture),
|
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/tools/ |
H A D | test_to_numeric.py | 370 def test_datetime_like(tz_naive_fixture, transform_assert_equal): argument 372 idx = pd.date_range("20130101", periods=3, tz=tz_naive_fixture)
|