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

26 lines
411 B
YAML
Raw Normal View History

2020-01-14 19:08:14 +00:00
language: python
python:
2020-04-01 18:40:57 +01:00
- 3.7
- 3.8
- 3.9
2020-04-01 18:40:57 +01:00
cache: pip
jobs:
fast_finish: true
allow_failures:
- python: 3.8
- python: 3.9
2020-01-14 19:08:14 +00:00
install:
2020-04-01 18:40:57 +01:00
- pip install -U pip setuptools
2020-01-14 19:08:14 +00:00
- pip install .
2020-02-13 12:23:35 +00:00
- pip install pytest pytest-django pytest-pythonpath wagtail-factories
2020-01-14 19:08:14 +00:00
script:
- pytest
deploy:
provider: pypi
server: $PYPI_URL
2020-04-01 18:40:57 +01:00
user: "__token__"
password: $PYPI_TOKEN
skip_existing: true
2020-01-14 19:08:14 +00:00
on:
tags: true