Skip to content

finish to replace Nose with Pytest #11

finish to replace Nose with Pytest

finish to replace Nose with Pytest #11

Workflow file for this run

on: [ push, pull_request ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install gevent requests pytest
- name: Test with pytest
run: |
pytest tests.py