Skip to content

Update mock requirement from ~=5.1.0 to ~=5.2.0 #55

Update mock requirement from ~=5.1.0 to ~=5.2.0

Update mock requirement from ~=5.1.0 to ~=5.2.0 #55

Workflow file for this run

name: Run tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
services:
redis:
image: redis:7-alpine
ports:
- 6379:6379
steps:
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Checkout code
uses: actions/checkout@v3
- name: Install requirements
run: |
pip install -r requirements.txt
pip install -r dev-requirements.txt
- name: Test with pytest
run: pytest --cov=.
env:
REDIS_STREAM_HOST: localhost
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v3