Skip to content

fix RedisJobStore .add_job() .update_job() param error #25

fix RedisJobStore .add_job() .update_job() param error

fix RedisJobStore .add_job() .update_job() param error #25

Workflow file for this run

name: test suite
on:
push:
branches: [3.x]
pull_request:
jobs:
test:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: setup.py
- name: Start external services
run: docker-compose up -d
- name: Install the project and its dependencies
run: pip install -e .[testing,asyncio,gevent,mongodb,redis,rethinkdb,sqlalchemy,tornado,twisted,zookeeper,etcd]
- name: Test with pytest
run: pytest