Skip to content

Commit

Permalink
Performance testing
Browse files Browse the repository at this point in the history
  • Loading branch information
consideRatio committed Nov 17, 2020
1 parent 04ef552 commit 4b49b6d
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions binderhub/tests/test_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,24 @@

@pytest.mark.asyncio(timeout=900)
@pytest.mark.parametrize("slug", [
# GitHub
"gh/consideratio/cached-minimal-dockerfile/HEAD", # TODO: update to binderhub-ci-repos
"gh/consideratio/cached-minimal-dockerfile/HEAD", # TODO: make me a SHA, and update to binderhub-ci-repos
"gh/consideratio/cached-minimal-dockerfile/c180b6d9e57454060e71e902d22186ddee4bbf6e",
"gh/consideratio/cached-minimal-dockerfile/master",
# Git
"git/{}/HEAD".format( # TODO: make me a SHA, and update to binderhub-ci-repos
quote("https://github.com/consideratio/cached-minimal-dockerfile", safe='')
),
"gl/binderhub-ci-repos/cached-minimal-dockerfile/HEAD",
"git/{}/c180b6d9e57454060e71e902d22186ddee4bbf6e".format( # TODO: make me a SHA, and update to binderhub-ci-repos
quote("https://github.com/consideratio/cached-minimal-dockerfile", safe='')
),
# GitLab
"gl/{}/HEAD".format(
quote("https://github.com/binderhub-ci-repos/cached-minimal-dockerfile", safe='')
),
"gl/{}/5cd1386af5c6b7aa694f6cfa2f3dd83ab10dabd9".format(
quote("https://gitlab.com/binderhub-ci-repos/cached-minimal-dockerfile", safe='')
),
])
@pytest.mark.remote
async def test_build(app, needs_build, needs_launch, always_build, slug, pytestconfig):
Expand Down

0 comments on commit 4b49b6d

Please sign in to comment.