1
Fork 0
This repository has been archived on 2024-07-16. You can view files and clone it, but cannot push or open issues or pull requests.
wagtail-draftail-snippet/.travis.yml
Nick Travis 9381d0ef0b
upgrading tests and required wagtail version (#26)
* upgrading tests and required wagtail version
fix #24

* add support for py 3.10
2022-10-27 17:13:59 -04:00

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