Skip to content

Commit

Permalink
Changed ox.environ.get('XFAILS', default) from default='' to default=…
Browse files Browse the repository at this point in the history
…0 to fix integer conversion error if environment variables not specified.
  • Loading branch information
charles-turner-1 committed Oct 24, 2024
1 parent 56ffa1d commit 091245a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

here = os.path.abspath(os.path.dirname(__file__))

_add_xfail = int(os.environ.get("XFAILS", ""))
_add_xfail = int(os.environ.get("XFAILS", 0))


@fixture(scope="session")
Expand Down

0 comments on commit 091245a

Please sign in to comment.