jrnl/.travis.yml
2019-10-19 13:03:57 -07:00

23 lines
471 B
YAML

dist: xenial # required for Python >= 3.7
language: python
python: "3.7"
before_install:
- pip install poetry
install:
- poetry install
script:
- poetry run python --version
- poetry run behave
before_deploy:
- pip install poetry
- poetry config http-basic.pypi $PYPI_USER $PYPI_PASS
- poetry version $TRAVIS_TAG
- poetry build
deploy:
provider: script
script: poetry publish
skip_cleanup: true
draft: true
on:
branch: master
tags: true