Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: 新增 nonebug 新版启动需要的配置 #3087

Merged
merged 3 commits into from
Oct 31, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
12 changes: 11 additions & 1 deletion website/docs/best-practice/testing/README.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,17 @@ pip install pytest-asyncio

## 配置测试

在开始测试之前,我们需要对测试进行一些配置,以正确启动我们的机器人。在 `tests` 目录下新建 `conftest.py` 文件,添加以下内容:
在开始测试之前,我们需要对测试进行一些配置,以正确启动我们的机器人。

首先我们需要配置 pytest-asyncio,在 `pyproject.toml` 的 pytest 配置部分添加:

```toml
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "session"
```

然后,我们在 `tests` 目录下新建 `conftest.py` 文件,添加以下内容:

```python title=tests/conftest.py
import pytest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,17 @@ pip install pytest-asyncio

## 配置测试

在开始测试之前,我们需要对测试进行一些配置,以正确启动我们的机器人。在 `tests` 目录下新建 `conftest.py` 文件,添加以下内容:
在开始测试之前,我们需要对测试进行一些配置,以正确启动我们的机器人。

首先我们需要配置 pytest-asyncio,在 `pyproject.toml` 的 pytest 配置部分添加:

```toml
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "session"
```

然后,我们在 `tests` 目录下新建 `conftest.py` 文件,添加以下内容:

```python title=tests/conftest.py
import pytest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,17 @@ pip install pytest-asyncio

## 配置测试

在开始测试之前,我们需要对测试进行一些配置,以正确启动我们的机器人。在 `tests` 目录下新建 `conftest.py` 文件,添加以下内容:
在开始测试之前,我们需要对测试进行一些配置,以正确启动我们的机器人。

首先我们需要配置 pytest-asyncio,在 `pyproject.toml` 的 pytest 配置部分添加:

```toml
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "session"
```

然后,我们在 `tests` 目录下新建 `conftest.py` 文件,添加以下内容:

```python title=tests/conftest.py
import pytest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,17 @@ pip install pytest-asyncio

## 配置测试

在开始测试之前,我们需要对测试进行一些配置,以正确启动我们的机器人。在 `tests` 目录下新建 `conftest.py` 文件,添加以下内容:
在开始测试之前,我们需要对测试进行一些配置,以正确启动我们的机器人。

首先我们需要配置 pytest-asyncio,在 `pyproject.toml` 的 pytest 配置部分添加:

```toml
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "session"
```

然后,我们在 `tests` 目录下新建 `conftest.py` 文件,添加以下内容:

```python title=tests/conftest.py
import pytest
Expand Down