[WIP] Add background task processsing #1207
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
services: | |
redis: | |
image: redis | |
options: >- | |
--health-cmd "redis-cli ping" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 6379:6379 | |
strategy: | |
matrix: | |
python-version: [3.8, 3.9, "3.10", "3.11"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: actions/cache@v4 | |
with: | |
path: ${{ env.pythonLocation }} | |
key: ${{ env.pythonLocation }}-${{ hashFiles('setup.py') }} | |
- name: Install panoptes aggregation | |
run: | | |
pip install -U pip | |
pip install -U .[online,test,doc] | |
- name: Run tests | |
env: | |
TRAVIS: true # one test is skipped on CI and looks for this env value | |
REDIS_HOST: redis | |
CELERY_BROKER_URL: redis://localhost:6379/0 | |
CELERY_RESULT_BACKEND: redis://localhost:6379/0 | |
run: | | |
coverage run | |
coverage report | |
- name: Coveralls | |
if: ${{ matrix.python-version == 3.10 }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: coveralls --service=github |