2023-05-02 22:46:10 +00:00
|
|
|
name: Test
|
2020-07-07 00:28:28 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
|
|
|
|
2022-09-25 08:04:00 +00:00
|
|
|
permissions:
|
|
|
|
contents: read # to fetch code (actions/checkout)
|
|
|
|
|
2020-07-07 00:28:28 +00:00
|
|
|
jobs:
|
2023-05-23 07:24:55 +00:00
|
|
|
ssl-test:
|
|
|
|
name: Run SSL tests
|
2023-05-13 14:49:59 +00:00
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Build the Docker test image for tox
|
2023-05-15 23:03:26 +00:00
|
|
|
uses: docker/build-push-action@v4
|
2023-05-13 14:49:59 +00:00
|
|
|
with:
|
|
|
|
file: tests/Dockerfile
|
|
|
|
tags: rqtest-image:latest
|
|
|
|
push: false
|
2023-05-23 07:24:55 +00:00
|
|
|
- name: Launch tox SSL env only (will only run SSL specific tests)
|
2023-05-13 14:49:59 +00:00
|
|
|
uses: addnab/docker-run-action@v3
|
|
|
|
with:
|
|
|
|
image: rqtest-image:latest
|
2023-07-09 10:34:25 +00:00
|
|
|
run: stunnel & redis-server & RUN_SSL_TESTS=1 hatch run tox run -e ssl
|
2023-05-13 14:49:59 +00:00
|
|
|
|
2023-05-02 22:46:10 +00:00
|
|
|
test:
|
2020-07-07 00:28:28 +00:00
|
|
|
name: Python${{ matrix.python-version }}/Redis${{ matrix.redis-version }}/redis-py${{ matrix.redis-py-version }}
|
2022-11-26 03:37:27 +00:00
|
|
|
runs-on: ubuntu-20.04
|
2023-05-01 05:44:32 +00:00
|
|
|
timeout-minutes: 10
|
2020-07-07 00:28:28 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-06-29 02:54:44 +00:00
|
|
|
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
|
2023-11-03 10:05:59 +00:00
|
|
|
redis-version: [4, 5, 6, 7]
|
2020-07-07 02:06:23 +00:00
|
|
|
redis-py-version: [3.5.0]
|
2020-07-07 00:28:28 +00:00
|
|
|
|
|
|
|
steps:
|
2022-05-22 05:53:59 +00:00
|
|
|
- uses: actions/checkout@v3
|
2020-07-07 00:28:28 +00:00
|
|
|
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
2023-10-07 00:08:30 +00:00
|
|
|
uses: actions/setup-python@v4.7.1
|
2020-07-07 00:28:28 +00:00
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
|
|
|
|
- name: Start Redis
|
2023-10-18 15:56:26 +00:00
|
|
|
uses: supercharge/redis-github-action@1.7.0
|
2020-07-07 00:28:28 +00:00
|
|
|
with:
|
|
|
|
redis-version: ${{ matrix.redis-version }}
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
2023-07-09 10:34:25 +00:00
|
|
|
pip install hatch
|
2020-07-07 00:28:28 +00:00
|
|
|
pip install redis==${{ matrix.redis-py-version }}
|
|
|
|
|
|
|
|
- name: Test with pytest
|
|
|
|
run: |
|
2023-07-09 10:34:25 +00:00
|
|
|
RUN_SLOW_TESTS_TOO=1 hatch run test:cov --durations=5
|
2020-07-07 00:28:28 +00:00
|
|
|
|
2020-08-21 10:03:43 +00:00
|
|
|
- name: Upload coverage to Codecov
|
2023-11-03 10:05:59 +00:00
|
|
|
uses: codecov/codecov-action@v3
|
2020-08-21 10:03:43 +00:00
|
|
|
with:
|
2020-10-19 23:15:55 +00:00
|
|
|
file: ./coverage.xml
|
2023-02-26 00:46:08 +00:00
|
|
|
fail_ci_if_error: false
|