Skip to content

Commit

Permalink
set env by default for test
Browse files Browse the repository at this point in the history
  • Loading branch information
yitongh committed Aug 26, 2024
1 parent 8cc28b3 commit 35f10b0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/ds/test_bounded_dynamic.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ def test_sizeEq(self):


if __name__ == '__main__':
assert os.environ['USE_BOUND_FOR_SHAPE_COMPARE'] == '1'
os.environ['USE_BOUND_FOR_SHAPE_COMPARE'] = os.getenv(
'USE_BOUND_FOR_SHAPE_COMPARE', '1')
test = unittest.main()
# DISABLE PYTHON DISPATCHER FLAG
del pd
Expand Down

0 comments on commit 35f10b0

Please sign in to comment.