Skip to content

Removed unnecessary argument (#70) #437

Removed unnecessary argument (#70)

Removed unnecessary argument (#70) #437

Workflow file for this run

# continuous integration
# run tests for repo
---
name: Test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
container: python:3.7
# Service containers to run with `container-job`
services:
# Label used to access the service container
redis:
# DockerHub image
image: redis
# Set health checks to wait until redis has started
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
env:
SESSION_REDIS: redis://redis:6379/0
steps:
- uses: actions/checkout@v4
- name: Install test runner
run: python3 -m pip install tox
- name: Run tests
run: tox