Skip to content

Commit

Permalink
fix: disable writes to daily_test_rollups
Browse files Browse the repository at this point in the history
  • Loading branch information
joseph-sentry committed Sep 17, 2024
1 parent 3f97ac2 commit 47ee581
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/test_results_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,8 +242,8 @@ def create_daily_total():
},
)

db_session.execute(stmt)
db_session.flush()
# db_session.execute(stmt)
# db_session.flush()

# Save TestInstances
insert_test_instances = insert(TestInstance.__table__).values(
Expand Down
1 change: 1 addition & 0 deletions tasks/tests/unit/test_test_results_processor_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -629,6 +629,7 @@ def test_upload_processor_task_call_existing_test_diff_flags_hash(
assert expected_result == result
assert commit.message == "hello world"

@pytest.mark.skip
@pytest.mark.integration
def test_upload_processor_task_call_daily_test_totals(
self,
Expand Down

0 comments on commit 47ee581

Please sign in to comment.