Skip to content

Commit

Permalink
fix: dev: Move argparse type from 'int' to int
Browse files Browse the repository at this point in the history
In latest version of pytest, the 'int' value as type is
no longer supported, causing issues when topology is
started.
  • Loading branch information
Ney Rojas authored and sergiosmcr committed Apr 22, 2024
1 parent cd0a155 commit 7f41f89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/topology/pytest/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ def pytest_addoption(parser):
group.addoption(
'--topology-build-retries',
default=0,
type='int',
type=int,
help='Retry building a topology up to defined times'
)

Expand Down

0 comments on commit 7f41f89

Please sign in to comment.