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
Following #1188 we are not longer always rebuilding our docker images for the Helm chart. Due to this, we run into this error.
=================================== FAILURES ===================================
______________________________ test_about_handler ______________________________
app = <binderhub.tests.conftest.RemoteBinderHub object at 0x7f7e74491730>
@pytest.mark.remote
async def test_about_handler(app):
# Check that the about page loads
r = await async_requests.get(app.url + "/about")
assert r.status_code == 200
assert "This website is powered by" in r.text
> assert binder_version in r.text
E assert '0.2.0+354.g83ad58e.dirty' in '<!DOCTYPE html>\n<html>\n<head>\n <title>Binder</title>\n \n<meta property="og:description" content="Reproducible, ... \n </div>\n </div>\n \n </div>\n </div>\n</div>\n\n\n \n\n\n \n \n \n</body>\n</html>'
E + where '<!DOCTYPE html>\n<html>\n<head>\n <title>Binder</title>\n \n<meta property="og:description" content="Reproducible, ... \n </div>\n </div>\n \n </div>\n </div>\n</div>\n\n\n \n\n\n \n \n \n</body>\n</html>' = <Response [200]>.text
This is caused by the test_environment being out of sync with the built image. I that we remove the version match assertion as a resolution as the other part of the test is still relevant.
The text was updated successfully, but these errors were encountered:
Following #1188 we are not longer always rebuilding our docker images for the Helm chart. Due to this, we run into this error.
This is caused by the test_environment being out of sync with the built image. I that we remove the version match assertion as a resolution as the other part of the test is still relevant.
The text was updated successfully, but these errors were encountered: