Looks like pytest 6.x changed the assert_outcomes() API so that error is now errors. This is causing our tests to fail when the latest version of Pytest is installed. This PR updates the tests requirements to pin Pytest to >=6.0.1 and adjusts tests/test_configs.py::test_missing_db_fixture to use the new errors kwarg when calling assert_outcomes().
Looks like pytest 6.x changed the
assert_outcomes()
API so thaterror
is nowerrors
. This is causing our tests to fail when the latest version of Pytest is installed. This PR updates thetests
requirements to pin Pytest to>=6.0.1
and adjuststests/test_configs.py::test_missing_db_fixture
to use the newerrors
kwarg when callingassert_outcomes()
.