You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We currently do a lot of unnecessary magic in our conftest.py, including nested fixtures and some global modifications using pytest's behavioral hooks. We should identity which pieces of magic we actually need, better encapsulate them, and remove the rest.
In particular, we probably need:
A way to parameterize tests as running on both staging and production, with the ability to disable one or the other via a CLI option
A way to run tests on only one instance or the other (i.e. staging or production)
A better way to mark tests as online and/or needing an ambient OIDC credential
The text was updated successfully, but these errors were encountered:
We currently do a lot of unnecessary magic in our
conftest.py
, including nested fixtures and some global modifications using pytest's behavioral hooks. We should identity which pieces of magic we actually need, better encapsulate them, and remove the rest.In particular, we probably need:
The text was updated successfully, but these errors were encountered: