tests(pyargus): ignore positive overflow errors in expr generation...
This commit is contained in:
parent
7591972481
commit
e7b1cca5c1
1 changed files with 4 additions and 0 deletions
|
|
@ -16,3 +16,7 @@ def test_correct_expr(data: st.DataObject) -> None:
|
|||
except ValueError as e:
|
||||
logging.critical(f"unable to parse expr: {spec}")
|
||||
raise e
|
||||
except BaseException as e:
|
||||
if "PanicException" in str(type(e)) and "ParseIntError { kind: PosOverflow }" in str(e):
|
||||
return
|
||||
raise
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue