From 5af9cb1e684f24b154e73fba4a872b0184bbef0b Mon Sep 17 00:00:00 2001 From: naotohayashi1991 <132004193+naotohayashi1991@users.noreply.github.com> Date: Tue, 22 Sep 2026 13:39:51 +0900 Subject: [PATCH] Fix CI and DEV workflows to use the current test directory --- .github/workflows/ci.yml | 4 ++-- .github/workflows/dev.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bd0ffc4..cf4fc55 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,10 +40,10 @@ jobs: - name: Run pycodestyle run: | pip install pycodestyle --upgrade - pycodestyle --ignore=E128,E261,E225,E501,W605 slugify test.py setup.py + pycodestyle --ignore=E128,E261,E225,E501,W605 slugify tests setup.py - name: Run test run: | - coverage run --source=slugify -m pytest test.py test_release.py + coverage run --source=slugify -m pytest tests - name: Coveralls run: coveralls --service=github env: diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 086d3c2..632830e 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -40,10 +40,10 @@ jobs: - name: Run pycodestyle run: | pip install pycodestyle --upgrade - pycodestyle --ignore=E128,E261,E225,E501,W605 slugify test.py setup.py + pycodestyle --ignore=E128,E261,E225,E501,W605 slugify tests setup.py - name: Run test run: | - coverage run --source=slugify -m pytest test.py test_release.py + coverage run --source=slugify -m pytest tests - name: Coveralls run: coveralls --service=github env: