Skip to content

Commit

Permalink
FE-203 disable test load hca e2e (#333)
Browse files Browse the repository at this point in the history
* skipping test_load_hca for now - FE-203

* linting
  • Loading branch information
bahill authored Apr 4, 2024
1 parent e7fa7d1 commit dfca3fe
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion orchestration/hca_orchestration/tests/e2e/test_load_hca.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
import logging
import time

import pytest
from dagster import execute_pipeline

from hca_orchestration.repositories.local_repository import load_hca_job
from hca_orchestration.tests.support.bigquery import (
assert_data_loaded,
assert_metadata_loaded,
)


@pytest.mark.skip(reason="This test is failing against TDR/BQ dev env - FE-203")
@pytest.mark.e2e
def test_load_hca(load_hca_run_config, dataset_name, tdr_bigquery_client, dataset_info):
job = load_hca_job()
Expand All @@ -17,6 +19,7 @@ def test_load_hca(load_hca_run_config, dataset_name, tdr_bigquery_client, datase
run_config=load_hca_run_config
)

logging.info("Waiting for metadata to propagate")
time.sleep(600) # pausing execution to allow for permissions to propagate

bq_project = dataset_info.dataset_data_project_id
Expand Down

0 comments on commit dfca3fe

Please sign in to comment.