Skip to content

Remove detectRetina: true from default tile config, refs #48 #80

Remove detectRetina: true from default tile config, refs #48

Remove detectRetina: true from default tile config, refs #48 #80

Workflow file for this run

name: Test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
datasette-version: ["<1.0", ">=1.0a7"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: setup.py
- name: Cache Playwright browsers
uses: actions/cache@v4
with:
path: ~/.cache/ms-playwright/
key: ${{ runner.os }}-browsers
- name: Install dependencies
run: |
pip install -e '.[test,playwright]'
playwright install
pip install "datasette${{ matrix.datasette-version }}"
- name: Run tests
run: |
pytest