Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: missed version assertion, retain both with sufficient flex #1203

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion binderhub/tests/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ async def test_about_handler(app):
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.split("+")[0] in r.text


@pytest.mark.remote
Expand All @@ -90,7 +91,7 @@ async def test_versions_handler(app):

data = r.json()
assert data['builder'] == app.build_image
assert data['binderhub'] == binder_version
assert data['binderhub'].split("+")[0] == binder_version.split("+")[0]


@pytest.mark.parametrize(
Expand Down