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: