Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,10 @@ jobs:
run: uv sync --locked

- name: Test with pytest
run: uv run pytest
run: uv run pytest --cov-report term --cov-report xml:coverage.xml

- name: Coveralls
uses: coverallsapp/github-action@v2
env:
COVERALLS_REPO_TOKEN : ${{ secrets.GITHUB_TOKEN }}

4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Flask-CLI-Extend

[![Tests](https://github.com/curskey/flask-cli-extend/actions/workflows/tests.yaml/badge.svg)](https://github.com/curskey/flask-cli-extend/actions/workflows/tests.yaml)
[![Coverage](https://coveralls.io/repos/github/curskey/flask-cli-extend/badge.svg?branch=main)](https://coveralls.io/github/curskey/flask-cli-extend?branch=main)
[![PyPI version](https://badge.fury.io/py/flask-cli-extend.svg)](https://badge.fury.io/py/flask-cli-extend)

Enhance Flask development workflow with powerful CLI commands for inspecting application.

## Why this `Plugin`?
Expand Down
Loading