apps/api/tests.py::IngestStartEndpointTest::test_ingest_progress_before_start

First seen 9 months, 2 weeks ago in commit 9ff0a pushed by Anže Pečar

Last 95 Runs
Pass % 96.8%
p50 duration 0.6106s
p95 duration 27.0016s

1 runs 1 passed in the last 30 days

Run 9 months, 1 week ago
Status PASS
Commit

Fix errors when Session is not yet defined

Commit 1bbfe pushed by Anže Pečar
Run 9 months, 1 week ago
Status PASS
Commit

Reduce trace sample rate

Commit 09d4c pushed by Anže Pečar
Run 9 months, 1 week ago
Status PASS
Commit

Index page improvements

Commit 2b59b pushed by Anže Pečar
Run 9 months, 2 weeks ago
Status PASS
Commit

Remove branch

Commit b378d pushed by Anže Pečar
Run 9 months, 2 weeks ago
Status PASS
Commit

Map ports

Commit fe876 pushed by Anže Pečar
Run 9 months, 2 weeks ago
Status FAIL
Commit

Upgrade to Django 5.0.1

Commit 1018a pushed by Anže Pečar
Repr
self = <apps.api.tests.IngestStartEndpointTest testMethod=test_ingest_progress_before_start>

    def test_ingest_progress_before_start(self):
        response = self.ingest_start({"env": {"GITHUB_RUN_ID": "run1"}})
        self.assertEqual(response.status_code, 200)
        ingest_id = response.json()["ingest_id"]
    
        response = self.ingest_progress(
            {
                "ingest_id": ingest_id,
                "tests": [self.get_test("test1"), self.get_test("test2")],
            }
        )
>       self.assertEqual(response.status_code, 200)
E       AssertionError: 500 != 200

apps/api/tests.py:171: AssertionError
Run 9 months, 2 weeks ago
Status PASS
Commit

Improve landing page on phones

Commit 9e7bc pushed by Anže Pečar
Run 9 months, 2 weeks ago
Status PASS
Commit

Make sure email is sent in bg task

Commit 66ca5 pushed by Anže Pečar
Run 9 months, 2 weeks ago
Status PASS
Commit

Add github marketplace endpoint

Commit 7c258 pushed by Anže Pečar
Run 9 months, 2 weeks ago
Status PASS
Commit

Fix support page title

Commit 339ed pushed by Anže Pečar
Run 9 months, 2 weeks ago
Status PASS
Commit

Add status page link

Commit 98833 pushed by Anže Pečar
Run 9 months, 2 weeks ago
Status PASS
Commit

Add health endopint

Commit d805d pushed by Anže Pečar
Run 9 months, 2 weeks ago
Status PASS
Commit

Add a support page

Commit ff648 pushed by Anže Pečar
Run 9 months, 2 weeks ago
Status PASS
Commit

Fix light mode

Commit 0792c pushed by Anže Pečar
Run 9 months, 2 weeks ago
Status FAIL
Commit

Fix light mode

Commit 0792c pushed by Anže Pečar
Repr
self = <apps.api.tests.IngestStartEndpointTest testMethod=test_ingest_progress_before_start>

    def test_ingest_progress_before_start(self):
        response = self.ingest_start({"env": {"GITHUB_RUN_ID": "run1"}})
        self.assertEqual(response.status_code, 200)
        ingest_id = response.json()["ingest_id"]
    
        response = self.ingest_progress(
            {
                "ingest_id": ingest_id,
                "tests": [self.get_test("test1"), self.get_test("test2")],
            }
        )
>       self.assertEqual(response.status_code, 200)
E       AssertionError: 500 != 200

apps/api/tests.py:171: AssertionError
Run 9 months, 2 weeks ago
Status PASS
Commit

Remove onboarding file

Commit f2372 pushed by Anže Pečar
Run 9 months, 2 weeks ago
Status PASS
Commit

Add more tests

Commit d87c7 pushed by Anže Pečar
Run 9 months, 2 weeks ago
Status FAIL
Commit

Add more tests

Commit d87c7 pushed by Anže Pečar
Repr
self = <apps.api.tests.IngestStartEndpointTest testMethod=test_ingest_progress_before_start>

    def test_ingest_progress_before_start(self):
        response = self.ingest_start({"env": {"GITHUB_RUN_ID": "run1"}})
        self.assertEqual(response.status_code, 200)
        ingest_id = response.json()["ingest_id"]
    
        response = self.ingest_progress(
            {
                "ingest_id": ingest_id,
                "tests": [self.get_test("test1"), self.get_test("test2")],
            }
        )
>       self.assertEqual(response.status_code, 200)
E       AssertionError: 500 != 200

apps/api/tests.py:171: AssertionError
Run 9 months, 2 weeks ago
Status PASS
Commit

Add tests and fix typos

Commit b9e98 pushed by Anže Pečar
Run 9 months, 2 weeks ago
Status PASS
Commit

Add dramatiq to test ingestion and add tests

Commit 9ff0a pushed by Anže Pečar