Skip to content

Commit

Permalink
Adding known issue checking
Browse files Browse the repository at this point in the history
  • Loading branch information
sven-oly committed Nov 14, 2024
1 parent ce625ef commit 7baf864
Show file tree
Hide file tree
Showing 3 changed files with 84,321 additions and 30,390 deletions.
6 changes: 1 addition & 5 deletions testgen/generators/datetime_fmt.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,9 @@ def generate_datetime_data_from_cldr(self, dt_json_path, run_limit=-1):
# Set the options
if 'dateLength' in test_item:
options['dateStyle'] = test_item['dateLength']
else:
options['dateStyle'] = 'short'
if 'timeLength' in test_item:
options['timeStyle'] = test_item['timeLength']
else:
options['timeStyle'] = 'short'

if 'calendar' in test_item:
options['calendar'] = test_item['calendar']
if options['calendar'] == 'gregorian':
Expand Down Expand Up @@ -161,4 +158,3 @@ def process_test_data(self):
result = subprocess.run(mv_command, shell=True)

return result

Loading

0 comments on commit 7baf864

Please sign in to comment.