Skip to content

Commit

Permalink
Update generate-matrix.py
Browse files Browse the repository at this point in the history
  • Loading branch information
james-garriss authored Feb 6, 2024
1 parent f481ca0 commit 252e5e1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions scripts/generate-matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@ def get_random_int(lowest=0, highest=20):


output_list = []
for i in range(0, get_random_int(5, 10)):
output_list.append(get_random_int(lowest=1))
# for i in range(0, get_random_int(5, 10)):
# output_list.append(get_random_int(lowest=1))
output_list.append("hey=you;hello=world")
output_list.append("foo=bar;dog=cat")

print("Dynamic matrix: " + str(output_list))

Expand Down

0 comments on commit 252e5e1

Please sign in to comment.