Skip to content

Use "Datetime" ydb type for sa.DATETIME #143

Use "Datetime" ydb type for sa.DATETIME

Use "Datetime" ydb type for sa.DATETIME #143

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
concurrency:
group: unit-${{ github.ref }}-${{ matrix.environment }}-${{ matrix.python-version }}-${{ matrix.folder }}
cancel-in-progress: true
strategy:
fail-fast: false
max-parallel: 4
matrix:
python-version: [3.8]
environment: [test]
folder: [ydb_sqlalchemy, test, test_dbapi]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: |
python -m pip install --upgrade pip
pip install tox==4.2.6
- name: Run unit tests
run: tox -e ${{ matrix.environment }} -- ${{ matrix.folder }}