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
Also worth noting that the tests are emitting a warning:
test_integration.py::test_filenames
/usr/local/lib/python3.5/dist-packages/flask/sessions.py:208: UserWarning: "localhost" is not a valid cookie domain, it must contain a ".". Add an entry to your hosts file, for example "localhost.localdomain", and use that instead.
' "{rv}.localdomain", and use that instead.'.format(rv=rv)
/usr/local/lib/python3.5/dist-packages/flask/sessions.py:208: UserWarning: "localhost" is not a valid cookie domain, it must contain a ".". Add an entry to your hosts file, for example "localhost.localdomain", and use that instead.
' "{rv}.localdomain", and use that instead.'.format(rv=rv)
The text was updated successfully, but these errors were encountered:
Our goal for the 5/15-5/30 sprint is to at least understand the root cause of these test failures to determine whether they point to real dev or prod issues (@rmol's initial investigation suggests they do not, but we still don't know the root cause). Likely beyond the scope of this sprint, we'll want to revisit #3844, possibly in combination with a plugin like flaky, to deal with known-flaky functional tests more systematically, e.g., by automatically re-running them.
Description
We're seeing occasional failures on the new TBB test logic.
Steps to Reproduce
Expected Behavior
Application tests pass reliably.
Actual Behavior
Application tests fail occasionally.
Comments
The failing tests (observed so far) are:
tests/test_2fa.py::test_totp_reuse_protections
tests/test_2fa.py::test_totp_reuse_protections2
tests/test_2fa.py::test_bad_token_fails_to_verify_on_admin_new_user_two_factor_page
tests/test_2fa.py::test_bad_token_fails_to_verify_on_new_user_two_factor_page
tests/test_journalist_api.py::test_user_cannot_get_an_api_token_with_wrong_2fa_token
Note that none of those are within the
functional/
subdir, but several do emit webdriver-related errors:Also worth noting that the tests are emitting a warning:
The text was updated successfully, but these errors were encountered: