Skip to content

Ingester: Conditional put utilizes less than or equal to for records.… #227

Ingester: Conditional put utilizes less than or equal to for records.…

Ingester: Conditional put utilizes less than or equal to for records.… #227

Workflow file for this run

name: Run tests
on: [push, pull_request]
jobs:
test-client:
runs-on: ubuntu-20.04
strategy:
matrix:
python: [3.8, 3.9, "3.10", 3.12]
extras: ["test", "test,queuable,sentry"]
steps:
- name: Setup Python
uses: actions/[email protected]
with:
python-version: ${{ matrix.python }}
- name: Check out repository code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Test
working-directory: ./client
run: |
pip install -e .[${{ matrix.extras }}]
py.test
test-docker:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Test
run: |
make test-ingester test-api