Skip to content

Commit

Permalink
[query] Make test_hail_in_notebook idempotent
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisvittal committed Nov 9, 2023
1 parent 3b38d0b commit 83433b9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hail/python/test/hail/test_hail_in_notebook.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"source": [
"import hail as hl\n",
"import os\n",
"hl.utils.range_table(1).write(f'{os.environ[\"HAIL_TEST_STORAGE_URI\"]}/test_hail_in_notebook.ht')\n",
"from hailtop.utils import secret_alnum_string\n",
"hl.utils.range_table(1).write(f'{os.environ[\"HAIL_TEST_STORAGE_URI\"]}/test_hail_in_notebook_{secret_alnum_string(10)}.ht')\n",
"from helpers import resource\n",
"hl.read_table(resource('backward_compatability/1.7.0/table/9.ht')).count()"
]
Expand Down

0 comments on commit 83433b9

Please sign in to comment.