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

[query] skip combiner tests until combiner is fast in QoB #13240

Merged
merged 2 commits into from
Jul 17, 2023
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
4 changes: 2 additions & 2 deletions hail/python/test/hail/vds/test_combiner.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
from hail.utils.misc import new_temp_file
from hail.vds.combiner import combine_variant_datasets, new_combiner, load_combiner, transform_gvcf
from hail.vds.combiner.combine import defined_entry_fields
from ..helpers import resource, fails_local_backend, fails_service_backend, test_timeout

from ..helpers import resource, skip_when_service_backend, test_timeout

all_samples = ['HG00308', 'HG00592', 'HG02230', 'NA18534', 'NA20760',
'NA18530', 'HG03805', 'HG02223', 'HG00637', 'NA12249',
Expand Down Expand Up @@ -110,6 +109,7 @@ def test_move_load_combiner_plan():


@test_timeout(10 * 60)
@skip_when_service_backend(reason='Combiner makes extensive use of the Backend API which are serviced by starting a Hail Batch job to execute them. This test will be too slow until we change the combiner to use many fewer executes.')
def test_combiner_run():
tmpdir = new_temp_file()
samples = all_samples[:5]
Expand Down