Skip to content

Commit

Permalink
Merge pull request #1 from fcbg-platforms/dependabot/github_actions/c…
Browse files Browse the repository at this point in the history
…odecov/codecov-action-5

Bump codecov/codecov-action from 4 to 5
  • Loading branch information
Mathieu Scheltienne authored Nov 19, 2024
2 parents ff817c3 + c3fbc34 commit 2d70384
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Run pytest
run: pytest fcbg_ruff --cov=fcbg_ruff --cov-report=xml --cov-config=pyproject.toml
- name: Upload to codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
files: ./coverage.xml
flags: unittests # optional
Expand Down
4 changes: 2 additions & 2 deletions fcbg_ruff/check/tests/test_regex.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def valid_file_stem() -> list[str]:
@pytest.fixture(scope="session")
def invalid_file_stem() -> list[str]:
"""Invalid file stems."""
# do not test with a whitespace 'F1a_101010_test test_ABC', as this is fitlered out
# do not test with a whitespace 'F1a_101010_test test_ABC', as this is filtered out
# by the parser/validator
return [
"F1_101010_test_AB1",
Expand All @@ -47,7 +47,7 @@ def valid_folder_name() -> list[str]:
@pytest.fixture(scope="session")
def invalid_folder_name() -> list[str]:
"""Invalid file stems."""
# do not test with a whitespace '_F1a_test ere', as this is fitlered out by the
# do not test with a whitespace '_F1a_test ere', as this is filtered out by the
# parser/validator
return ["_G2a_test", "_F10abc", "_F1abc__", "F1_test"]

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ dependencies = [
]
description = 'Template for python projects.'
keywords = [
'python',
'it',
'validator',
'filename',
'it',
'python',
'regex',
'validator',
]
license = {file = 'LICENSE'}
maintainers = [
Expand Down

0 comments on commit 2d70384

Please sign in to comment.