From 24c55fed28924d4f8f11a8128b520d73dc4d60bc Mon Sep 17 00:00:00 2001 From: Yunchu Lee Date: Thu, 20 Jul 2023 10:26:27 +0900 Subject: [PATCH] fix coverage report issue --- .github/workflows/pr_check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr_check.yml b/.github/workflows/pr_check.yml index 2ef9fd1607..9dc81d1ef8 100644 --- a/.github/workflows/pr_check.yml +++ b/.github/workflows/pr_check.yml @@ -49,7 +49,7 @@ jobs: python -m pip install tox - name: Unit testing run: | - tox -e tests-py${{ matrix.tox-env-py }}-${{ matrix.tox-env-os }} -- tests/unit --cov + tox -e tests-py${{ matrix.tox-env-py }}-${{ matrix.tox-env-os }} --develop -- tests/unit --cov - name: Integration testing run: | tox -e tests-py${{ matrix.tox-env-py }}-${{ matrix.tox-env-os }} -- tests/integration