Skip to content

Bugfix: timeout error when listing Consumption Roles #718

Bugfix: timeout error when listing Consumption Roles

Bugfix: timeout error when listing Consumption Roles #718

name: Integration tests
on:
workflow_dispatch:
pull_request:
branches:
- main
- release/*
- main-v2
- v2m*
jobs:
run-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.9 ]
services:
postgres:
image: postgres
env:
POSTGRES_DB: dataall
POSTGRES_PASSWORD: docker
POSTGRES_USER: postgres
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: coverage
run: make coverage