Skip to content

Commit

Permalink
Patch for github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Maksym Zemlianyi committed Dec 2, 2024
1 parent 4d93371 commit 0601eb5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/python-test-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,9 @@ jobs:
- name: Install project
run: poetry install --no-interaction

- name: Github Action for testing the code
run: make coverage
- name: Execute lint / formatting / tests
run: |
source .venv/bin/activate
make lint
make format
make coverage
2 changes: 1 addition & 1 deletion tests/test_currency_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,4 +246,4 @@ def test_currency_amount_value_error_custom_message(self):


if __name__ == '__main__':
unittest.main()
unittest.main()

0 comments on commit 0601eb5

Please sign in to comment.