Skip to content

refact!: remove Bento 'tables', alter ingestion procedure, add authz #225

refact!: remove Bento 'tables', alter ingestion procedure, add authz

refact!: remove Bento 'tables', alter ingestion procedure, add authz #225

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.10", "3.11" ]
services:
redis:
image: redis
ports:
- 6379:6379
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
name: Set up Python
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: python -m pip install poetry==1.3.2
- name: Install dependencies
run: python -m poetry install
- name: Test
run: mkdir -p tmp && pytest -svv --cov=bento_wes --cov-branch
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3