vault backup: 2025-01-23 08:49:54

This commit is contained in:
deng 2025-01-23 08:49:55 +08:00
parent 2b7423f095
commit becf7b3781
3 changed files with 13 additions and 28 deletions

View File

@ -13,12 +13,12 @@
"state": {
"type": "markdown",
"state": {
"file": "組織/EverfortuneAI/{Note} Poetry.md",
"file": "組織/EverfortuneAI/{Note} Pytest.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "{Note} Poetry"
"title": "{Note} Pytest"
}
}
]
@ -146,8 +146,8 @@
},
"active": "e0251782d53c0c60",
"lastOpenFiles": [
"組織/EverfortuneAI/{Note} Nox.md",
"組織/EverfortuneAI/{Note} Poetry.md",
"組織/EverfortuneAI/{Note} Nox.md",
"組織/EverfortuneAI/resources/poetry.png",
"Untitled.md",
"組織/EverfortuneAI/{Note} Packaging Python Project.md",

View File

@ -20,23 +20,8 @@
"icon": "lucide-file",
"title": "{Note} Poetry"
}
},
{
"id": "da4efdc0e3adde70",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "組織/EverfortuneAI/{Note} Pytest.md",
"mode": "source",
"source": true
},
"icon": "lucide-file",
"title": "{Note} Pytest"
}
}
],
"currentTab": 1
]
},
{
"id": "97c43f9093922695",
@ -143,7 +128,7 @@
"state": {
"type": "backlink",
"state": {
"file": "組織/EverfortuneAI/{Note} Pytest.md",
"file": "組織/EverfortuneAI/{Note} Poetry.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
@ -153,7 +138,7 @@
"unlinkedCollapsed": true
},
"icon": "links-coming-in",
"title": "{Note} Pytest 的反向連結"
"title": "{Note} Poetry 的反向連結"
}
},
{
@ -162,12 +147,12 @@
"state": {
"type": "outgoing-link",
"state": {
"file": "組織/EverfortuneAI/{Note} Pytest.md",
"file": "組織/EverfortuneAI/{Note} Poetry.md",
"linksCollapsed": false,
"unlinkedCollapsed": true
},
"icon": "links-going-out",
"title": "{Note} Pytest 的對外連結"
"title": "{Note} Poetry 的對外連結"
}
},
{
@ -189,10 +174,10 @@
"state": {
"type": "outline",
"state": {
"file": "組織/EverfortuneAI/{Note} Pytest.md"
"file": "組織/EverfortuneAI/{Note} Poetry.md"
},
"icon": "lucide-list",
"title": "{Note} Pytest 的大綱"
"title": "{Note} Poetry 的大綱"
}
},
{
@ -223,10 +208,10 @@
"obsidian-git:Open Git source control": false
}
},
"active": "da4efdc0e3adde70",
"active": "23dfe70ddddd299f",
"lastOpenFiles": [
"組織/EverfortuneAI/{Note} Poetry.md",
"組織/EverfortuneAI/{Note} Pytest.md",
"組織/EverfortuneAI/{Note} Poetry.md",
"組織/EverfortuneAI/resources/test_your_code.png",
"組織/EverfortuneAI/{Note} Nox.md",
"組織/EverfortuneAI/{Note} Packaging Python Project.md",

View File

@ -32,5 +32,5 @@ tags:
- 透過``-n``引數調用,例如``pytest -n auto``
- 若測試物件之間有依賴性可使用xdist_group_mark將物件分群同群的物件將會在同一行程內執行
- 平行化通常伴隨更多資源的消耗,使用時需小心~
- 善用[Fixture](https://docs.pytest.org/en/stable/explanation/fixtures.html#sharing-test-data)將某些資料暫存給後續測試使用,進一步節省測試時間
- 善用[Fixture](https://docs.pytest.org/en/stable/explanation/fixtures.html#sharing-test-data)將某些資料共享或暫存給其他測試使用,進一步節省測試時間
- Pytest也支援[pyproject.toml](https://docs.pytest.org/en/stable/reference/customize.html#pyproject-toml)進行配置哦