Skip to content

add radon pmtiles

add radon pmtiles #6

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Test Notebooks
on:
push:
paths-ignore:
- '**.md'
jobs:
test_notebooks:
runs-on: ubuntu-latest
steps:
- name: Checkout source repository
uses: actions/[email protected]
- name: Setup Python
uses: actions/[email protected]
with:
python-version: 3.11
architecture: x64
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Install dependencies for testing
run: |
pip install -r requirements_dev.txt
- name: Test with doctest
run: |
python -m doctest README.md
- name: Test with pytest
run: |
python -m pytest -v --nbval sensor-things-api-demo.ipynb