Skip to content

Improving addListOfRows guessing style when first row has None values. Now it iterates until the first not None value #111

Improving addListOfRows guessing style when first row has None values. Now it iterates until the first not None value

Improving addListOfRows guessing style when first row has None values. Now it iterates until the first not None value #111

Workflow file for this run

name: Python application
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
- name: Install LibreOffice and uno dependencies
run: |
sudo apt-get update
sudo apt-get install -y libreoffice python3-uno imagemagick gettext
- name: Install python environment
run: |
python -m venv .venv --system-site-packages
.venv/bin/pip install .
.venv/bin/pip install pytest envwrap # Added envwrap to satisfy tqdm optional dependency and avoid uno import hook failure
- name: Run Tests
run: |
.venv/bin/pytest -v # Correct venv path and remove 'sudo'