ci: Use testcontainer for running tests #18
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
# This file contains checks to run unit tests. | |
# | |
# Special thank you to pylint-dev project at GitHub where inspiration | |
# was taken. | |
name: unit tests | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
jobs: | |
tests-linux: | |
name: run / ${{ matrix.python-version }} / Linux | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10"] | |
timeout-minutes: 25 | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up Python ${{ matrix.python-version }} | |
id: python | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python-version }} | |
check-latest: true | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pytest | |
if [ -f requirements.txt ]; then | |
pip install -r requirements.txt | |
else | |
echo "No requirements.txt file found" | |
fi | |
- name: Run PyTest | |
env: | |
PGHOST: localhost | |
PGUSER: postgres | |
PGPASSWORD: xyzzy | |
PGPORT: 5432 | |
TEST_CONTAINER_TIMESCALE: timescale/timescaledb:latest-pg15 | |
TEST_CONTAINER_POSTGRES: postgres:15 | |
run: python -m pytest |