Skip to content

Commit f8c304e

Browse files
committed
first public release
0 parents  commit f8c304e

226 files changed

Lines changed: 4455 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.builds/alpine.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
image: alpine/latest
2+
packages:
3+
- uv
4+
- gcc
5+
- python3-dev
6+
7+
secrets:
8+
- b88a4c2c-944c-42a6-9fbb-7483049c458a
9+
10+
sources:
11+
- git@git.sr.ht:~sfermigier/flask-coverage
12+
13+
tasks:
14+
- install: |
15+
cd flask-coverage
16+
uv sync
17+
- test: |
18+
cd flask-coverage
19+
uv run pytest -q --tb=short
20+
- lint: |
21+
cd flask-coverage
22+
uv run ruff check
23+
uv run ty check src
24+
- nox: |
25+
cd flask-coverage
26+
uvx nox
27+
28+
triggers:
29+
- action: email
30+
condition: failure
31+
to: sf@fermigier.com

.builds/ubuntu-2404.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Copyright (c) 2024, Abilian SAS
2+
#
3+
# SPDX-License-Identifier: BSD-3-Clause
4+
5+
image: ubuntu/24.04
6+
7+
secrets:
8+
- b88a4c2c-944c-42a6-9fbb-7483049c458a
9+
10+
11+
packages:
12+
# Build tools
13+
- software-properties-common
14+
- build-essential
15+
# Python is 3.12
16+
- python3-dev
17+
- python3-pip
18+
# Extra
19+
- nodejs
20+
21+
tasks:
22+
- setup: |
23+
echo "Building on Ubuntu 2404"
24+
sudo pip install --break-system-packages -U uv nox
25+
cd flask-coverage
26+
uv sync
27+
28+
- test: |
29+
cd flask-coverage
30+
uv run pytest -q --tb=short
31+
- lint: |
32+
cd flask-coverage
33+
uv run ruff check
34+
# uv run ty check src
35+
- nox: |
36+
cd flask-coverage
37+
uvx nox
38+
39+
triggers:
40+
- action: email
41+
condition: failure
42+
to: builds@fermigier.com

.flask-coverage-cache/files.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
[
2+
{
3+
"file": "/Users/fermigier/projects/flask/flask-coverage/examples/demo_app.py",
4+
"statements": 18,
5+
"missing": 4,
6+
"covered": 14,
7+
"percent": 77.78
8+
},
9+
{
10+
"file": "/Users/fermigier/projects/flask/flask-coverage/src/flask_coverage/auth.py",
11+
"statements": 40,
12+
"missing": 36,
13+
"covered": 4,
14+
"percent": 10.0
15+
},
16+
{
17+
"file": "/Users/fermigier/projects/flask/flask-coverage/src/flask_coverage/blueprint.py",
18+
"statements": 100,
19+
"missing": 48,
20+
"covered": 52,
21+
"percent": 52.0
22+
},
23+
{
24+
"file": "/Users/fermigier/projects/flask/flask-coverage/src/flask_coverage/extension.py",
25+
"statements": 334,
26+
"missing": 228,
27+
"covered": 106,
28+
"percent": 31.74
29+
}
30+
]
52 KB
Binary file not shown.

.flask-coverage-cache/meta.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"refreshed_at": "2026-04-26T19:49:51.359058+00:00",
3+
"duration_seconds": 0.206,
4+
"autosave_interval_seconds": 30.0
5+
}

.flask-coverage-cache/regenerate.lock

Whitespace-only changes.

.flask-coverage-cache/report.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Name Stmts Miss Cover
2+
-----------------------------------------------------
3+
examples/demo_app.py 18 4 78%
4+
src/flask_coverage/auth.py 40 36 10%
5+
src/flask_coverage/blueprint.py 100 48 52%
6+
src/flask_coverage/extension.py 334 228 32%
7+
-----------------------------------------------------
8+
TOTAL 492 316 36%

.git-old/COMMIT_EDITMSG

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
refact: ruff fixes

.git-old/FETCH_HEAD

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
c8b9285b43a70dfea031b0b46f8871cd9df22b18 branch 'main' of git.sr.ht:~sfermigier/flask-coverage

.git-old/HEAD

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ref: refs/heads/main

0 commit comments

Comments
 (0)