This commit is contained in:
Beverly Nguyen
2025-08-07 11:51:25 -07:00
parent e4929c835e
commit 4f82c69323
3 changed files with 3 additions and 4 deletions

View File

@@ -2,6 +2,7 @@ import multiprocessing
import os
import sys
import traceback
import gunicorn
# Let gunicorn figure out the right number of workers

View File

@@ -1,7 +1,6 @@
import json
import logging
import urllib.parse
from os import getenv
import requests

View File

@@ -113,9 +113,8 @@ def test_all_activity(
assert report_cell == "N/A", f"Expected report 'N/A', but got '{report_cell}'"
status_cell = cells[5].get_text(strip=True)
assert (
"1 delivered" in status_cell and "5 failed" in status_cell
), f"Expected status to contain '1 delivered' and '5 failed', but got '{status_cell}'"
assert "1 delivered" in status_cell, f"Expected status to contain '1 delivered', but got '{status_cell}'"
assert "5 failed" in status_cell, f"Expected status to contain '5 failed', but got '{status_cell}'"
def test_all_activity_no_jobs(client_request, mocker):