Skip to content

Fix lat lon in get_from_location #133

Fix lat lon in get_from_location

Fix lat lon in get_from_location #133

Workflow file for this run

---
name: "Python testing"
on:
push:
branches:
pull_request:
jobs:
tests:
name: "Test package"
runs-on: ubuntu-latest
strategy:
max-parallel: 3
matrix:
python-version: ['3.12']
steps:
- name: "Checkout code"
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: "Cache pip"
uses: actions/cache@v3
with:
# This path is specific to Ubuntu
path: ~/.cache/pip
# Look to see if there is a cache hit for the corresponding requirements file
key: ${{ runner.os }}-pip-${{ hashFiles('requirements*.txt') }}
restore-keys: |
${{ runner.os }}-pip-
${{ runner.os }}-
- name: "Install dependencies"
run: |
python -m pip install --upgrade pip
python -m pip install -r requires.txt
pip install pytest-xdist
- name: "Run tests with unittest"
run: |
python -m unittest discover -q -f tests