From dc80e7e00a9e21dbd5b8055b8e260bc092420324 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Fri, 11 Aug 2023 14:07:32 -0700 Subject: [PATCH] remove the multiple workers from the tests --- .github/workflows/checks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index de26f14ed..fe3aefda1 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -47,7 +47,7 @@ jobs: - name: Check imports alphabetized run: pipenv run isort --check-only ./app ./tests - name: Run tests with coverage - run: pipenv run coverage run --omit=*/notifications_utils/* -m pytest -n4 --maxfail=10 + run: pipenv run coverage run --omit=*/notifications_utils/* -m pytest --maxfail=10 env: SQLALCHEMY_DATABASE_TEST_URI: postgresql://user:password@localhost:5432/test_notification_api - name: Check coverage threshold