diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 53d60a9..32ec89e 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -3,14 +3,13 @@ on: [push] jobs: do-a-test: runs-on: ubuntu-latest - step: + steps: - uses: actions/checkout@v2 - name: Set up python 3.10 uses: actions/setup-python@v2 with: python-version: '3.10' # Version range or exact version of a Python version to use, using SemVer's version range syntax architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified - - run: Python -V - name: Dependencies install run: | python -m pip install --upgrade pip poetry @@ -21,8 +20,5 @@ jobs: run: poetry run pytest --cov-report html --cov-report xml --cov=./src/plugins/nonebot_bison --junitxml=test-results/junit.xml -k 'not compare' - name: Collect coverage run: poetry run coverage html --include='src/*' - - codecov/upload: - file: coverage.xml - - store_artifacts: - path: htmlcov - \ No newline at end of file + +