Skip to content

<grab>[feat]poke 调用config属性错误 #2190

<grab>[feat]poke 调用config属性错误

<grab>[feat]poke 调用config属性错误 #2190

Workflow file for this run

name: Build & Test
on:
push:
branches: '*'
pull_request:
branches: '*'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.9.13' ]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Display Python version
run: python --version
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest pytest-asyncio
python -m pip install -r requirements.txt
- name: Run tests
run: |
pytest -v --full-trace --durations 10 test.py