From b9cb076cfed0d05529cfea65ce5db4c22f323a91 Mon Sep 17 00:00:00 2001 From: himkt Date: Sat, 13 Jan 2024 01:27:06 +0900 Subject: [PATCH] fix: run pytest with python -m --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0dce971..d303f2e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,8 +41,8 @@ jobs: run: | ruff check konoha ruff format --diff konoha - - name: Test with pytest - run: pytest + - name: Run test + run: python -m pytest env: AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}