Skip to content

Commit

Permalink
添加测试
Browse files Browse the repository at this point in the history
  • Loading branch information
ssttkkl committed Oct 19, 2024
1 parent 9d98c18 commit d7927f2
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/python-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python

name: PR Check

on:
pull_request:

jobs:
test-api-only:

strategy:
fail-fast: false
matrix:
os: [ macos-latest, windows-latest, ubuntu-latest ]
python-version: ["3.9", "3.10", "3.11", "3.12"]
pydantic: ["pydantic>=2.0.0", "pydantic<2.0.0"]

runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install requirements
run: |
pip install poetry
poetry export --with=dev --without-hashes -o requirements.txt
pip install -r requirements.txt
pip install "${{ matrix.pydantic }}"
- name: Test with pytest
run: pytest
10 changes: 10 additions & 0 deletions src/tests/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import pytest


class MyTest:
@pytest.fixture(autouse=True)
def load_pixivbot(self, nonebug_init):
import nonebot # 这里的导入必须在函数内

# 加载插件
return nonebot.load_plugins("nonebot_plugin_mahjong_scoreboard")
7 changes: 7 additions & 0 deletions src/tests/test_load.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import pytest
from nonebug import App


@pytest.mark.asyncio
async def test_load(app: App):
pass

0 comments on commit d7927f2

Please sign in to comment.