Skip to content

Add support for partitioned arrow files, and convert vasttools.pipeline to use pathlib rather than os.path #591

Add support for partitioned arrow files, and convert vasttools.pipeline to use pathlib rather than os.path

Add support for partitioned arrow files, and convert vasttools.pipeline to use pathlib rather than os.path #591

Workflow file for this run

name: pytest
on: [pull_request]
jobs:
test:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
python_version: ['3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python_version }}
- uses: Gr1N/setup-poetry@v9
- name: Cache Python dependencies
uses: actions/cache@v4
with:
path: ~/.cache/pypoetry/virtualenvs
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
- name: Install python dependencies
run: poetry install
- name: Run pytests
run: |
poetry run pytest --cov=vasttools -vv