Skip to content

asfd

asfd #64

Workflow file for this run

name: Tests
# TODO: use proper rule
# on:
# push:
# branches: [ main ]
# pull_request:
on:
push:
branches:
- '**'
jobs:
run_tests:
runs-on: ubuntu-latest
container:
image: qgis/qgis:3.34
steps:
- uses: actions/checkout@v4
- name: install system dependencies
run: apt update && apt install -y python3-poetry python3-flask python3-boto3
- name: Install Python dependencies
working-directory: qsa-api
run: poetry install
- name: Run tests
working-directory: qsa-api
run: pytest -sv tests/test_api_storage_filesystem.py