Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
syphar committed Aug 29, 2023
1 parent ab38343 commit e4e121d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
poetry install --no-interaction
- name: running tests
run: coverage run --source="pytest_translations" -m "pytest"
run: poetry run coverage run --source="pytest_translations" -m "pytest"

- name: uploading coverage
run: codecov
run: poetry run codecov
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ packages = [{ include = "pytest_translations" }]
python = ">=3.8,<4.0"
polib = ">=1.0.5"
pyenchant = ">=1.6.0"
pytest = ">=7"

[tool.poetry.group.dev.dependencies]
pytest = ">=6.1"
codecov = "^2.1.13"
codecov = "~2"

[tool.poetry.plugins]
pytest11 = { pytest_translations = "pytest_translations" }
Expand Down

0 comments on commit e4e121d

Please sign in to comment.