Skip to content

feat(plot_track_zones): Add option to visualize as Pie Chart #185

feat(plot_track_zones): Add option to visualize as Pie Chart

feat(plot_track_zones): Add option to visualize as Pie Chart #185

Workflow file for this run

name: Testing
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
test:
name: ${{ matrix.os }} / ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}-latest
strategy:
matrix:
os:
- ubuntu
python-version:
- "3.12"
- "3.11"
- "3.10"
env:
TEST_ENV: CI
steps:
- uses: actions/checkout@master
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Log python version info (${{ matrix.python-version }})
run: python --version
- name: Install dependencies
run: |
pip install -r requirements/prod.txt
pip install -r requirements/test.txt
pip install -e .
- name: pytest
run: |
python -m pytest -v --cov-report term-missing --cov=gpx_track_analyzer