Skip to content

feat(geomltoolkits): integration with geomltoolkits for modularization #81

feat(geomltoolkits): integration with geomltoolkits for modularization

feat(geomltoolkits): integration with geomltoolkits for modularization #81

Workflow file for this run

name: Run Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install --without api --without dev
- name: Run tests
run: poetry run python -m unittest discover -s tests -p 'test_*.py'