Skip to content

Commit

Permalink
readd uuid in wksht name so that concurrent GH action workflow runs c…
Browse files Browse the repository at this point in the history
…an happen, because I cant see how to prevent that
  • Loading branch information
robin900 committed Mar 8, 2025
1 parent 5e0e8ad commit d7b59fa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ def make_worksheet_object(spreadsheet, props):
'https://www.googleapis.com/auth/drive.file'
]

TEST_WORKSHEET_NAME = 'wksht_test'

I18N_STR = u'Iñtërnâtiônàlizætiøn' # .encode('utf8')

Expand Down Expand Up @@ -86,6 +85,8 @@ def gen_value(prefix=None):
else:
return unicode(uuid.uuid4())

TEST_WORKSHEET_NAME = f'wksht_test{gen_value()}'


class RangeConversionTest(unittest.TestCase):
RANGES = {
Expand Down

0 comments on commit d7b59fa

Please sign in to comment.