Skip to content

fix: only check permission for existing chunks #25

fix: only check permission for existing chunks

fix: only check permission for existing chunks #25

Workflow file for this run

# 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: Linux / Python ${{ matrix.python-version }} / Postgres ${{ matrix.postgres-version }}
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
postgres-version: ["14", "15"]
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:
TEST_CONTAINER_TIMESCALE: timescale/timescaledb:latest-pg${{ matrix.postgres-version }}
TEST_CONTAINER_POSTGRES: postgres:${{ matrix.postgres-version }}
run: python -m pytest