Add workflow for testing adapters #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
test_postgresql: | |
runs-on: ubuntu-latest | |
name: Start tests for adapters | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.9.16" | |
- name: Setup poetry | |
uses: abatilo/actions-poetry@v2 | |
with: | |
poetry-version: "1.3.1" | |
- name: Install dependencies and need compilers | |
working-directory: odd-collector | |
run: | | |
sudo apt-get update && sudo apt-get install -y -q build-essential \ | |
python3-dev libpq-dev curl librdkafka-dev unixodbc \ | |
unixodbc-dev openssl libsasl2-dev | |
poetry install | |
# for now only tests for PostgreSQL adapter, other need to be checked and updated for future use | |
- name: Run tests | |
working-directory: odd-collector | |
run: pytest tests/integration/test_postgres.py --v |