9381d0ef0b
* upgrading tests and required wagtail version fix #24 * add support for py 3.10
24 lines
376 B
YAML
24 lines
376 B
YAML
dist: focal
|
|
language: python
|
|
python:
|
|
- 3.7
|
|
- 3.8
|
|
- 3.9
|
|
- 3.10
|
|
cache: pip
|
|
jobs:
|
|
fast_finish: true
|
|
install:
|
|
- pip install -U pip setuptools
|
|
- pip install .
|
|
- pip install pytest pytest-django pytest-pythonpath wagtail-factories
|
|
script:
|
|
- pytest
|
|
deploy:
|
|
provider: pypi
|
|
server: $PYPI_URL
|
|
user: "__token__"
|
|
password: $PYPI_TOKEN
|
|
skip_existing: true
|
|
on:
|
|
tags: true
|