Skip to content

Just testing

Just testing #35

Workflow file for this run

name: CI-COVER-DATABASES
on:
# push:
# paths:
# - '**.py'
# - '.github/workflows/**'
# - '!dev/**'
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
unit_tests:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version:
- "3.10"
name: Check Python ${{ matrix.python-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Build the stack
run: docker-compose up -d mysql postgres #presto trino clickhouse vertica
- name: Install Poetry
run: pip install poetry
- name: Install package
run: "poetry install"
- name: Run unit tests
run: |
docker ps
docker logs dd-mysql
poetry run unittest-parallel