Skip to content

Commit

Permalink
[JS]: Skip js integration tests for interval
Browse files Browse the repository at this point in the history
  • Loading branch information
handstuyennn committed Sep 5, 2024
1 parent 1b4d1be commit ade6c83
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions dev/archery/archery/integration/datagen.py
Original file line number Diff line number Diff line change
Expand Up @@ -412,13 +412,9 @@ def _get_type(self):

def generate_column(self, size, name=None):
min_day_value, max_day_value = -10000*366, 10000*366
# values = [{'days': random.randint(min_day_value, max_day_value),
# 'milliseconds': random.randint(-86400000, +86400000)}
# for _ in range(size)]
values = []
for _ in range(size):
values.append(random.randint(min_day_value, max_day_value))
values.append(random.randint(-86400000, +86400000))
values = [{'days': random.randint(min_day_value, max_day_value),
'milliseconds': random.randint(-86400000, +86400000)}
for _ in range(size)]

is_valid = self._make_is_valid(size)
if name is None:
Expand Down Expand Up @@ -1891,9 +1887,11 @@ def _temp_path():

generate_duration_case(),

generate_interval_case(),
generate_interval_case()
.skip_tester('JS'),

generate_month_day_nano_interval_case(),
generate_month_day_nano_interval_case()
.skip_tester('JS'),

generate_map_case(),

Expand Down

0 comments on commit ade6c83

Please sign in to comment.