Skip to content

Commit 59dbc83

Browse files
committed
correct coverage repr
1 parent 10a6b08 commit 59dbc83

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
---
2626

27-
Documentation: https://lancetnik.github.io/FastDI/
27+
Documentation: https://lancetnik.github.io/FastDepends/
2828

2929
---
3030

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ dependencies = [
4545
dynamic = ["version"]
4646

4747
[project.urls]
48-
Homepage = "https://lancetnik.github.io/FastDI/"
49-
Documentation = "https://lancetnik.github.io/FastDI/"
50-
Tracker = "https://github.com/Lancetnik/FastDI/issues"
51-
Source = "https://github.com/Lancetnik/FastDI"
48+
Homepage = "https://lancetnik.github.io/FastDepends/"
49+
Documentation = "https://lancetnik.github.io/FastDepends/"
50+
Tracker = "https://github.com/Lancetnik/FastDepends/issues"
51+
Source = "https://github.com/Lancetnik/FastDepends"
5252

5353
[project.optional-dependencies]
5454
test = [
@@ -156,7 +156,7 @@ concurrency = [
156156
"thread"
157157
]
158158
source = [
159-
"fastdi",
159+
"fast_depends",
160160
"tests"
161161
]
162162
context = '${CONTEXT}'

scripts/lint.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
mypy fastdi tests
2-
ruff fastdi tests --fix
3-
black fastdi tests
4-
isort fastdi tests
1+
mypy fast_depends tests
2+
ruff fast_depends tests --fix
3+
black fast_depends tests
4+
isort fast_depends tests

tests/async/test_async_depends.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,6 @@ async def test_sync_yield_exception_start():
171171

172172
def dep_func():
173173
raise ValueError()
174-
yield 3
175174

176175
@inject
177176
async def some_func(a = Depends(dep_func)): # pragma: no cover

0 commit comments

Comments
 (0)