Skip to content

Commit

Permalink
Added print statements to debug e2e test failure.
Browse files Browse the repository at this point in the history
  • Loading branch information
Zhu Zhanyan committed Apr 7, 2020
1 parent 1848dd4 commit 146fb2b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/e2e/basic-ingest-redis-serving.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ def test_all_types_retrieve_online_success(client, all_types_dataframe):
):
break

@pytest.mark.timeout(600)
@pytest.mark.timeout(300)
@pytest.mark.run(order=29)
def test_all_types_ingest_jobs(client, all_types_dataframe):
# list ingestion jobs given featureset
Expand All @@ -344,6 +344,8 @@ def test_all_types_ingest_jobs(client, all_types_dataframe):
assert len(ingest_jobs) >= 1

for ingest_job in ingest_jobs:
print("status: ", ingest_job.status)
print("job:", str(ingest_job))
ingest_job.wait(IngestionJobStatus.RUNNING)
assert ingest_job.status == IngestionJobStatus.RUNNING

Expand Down

0 comments on commit 146fb2b

Please sign in to comment.