Skip to content

Commit

Permalink
Fix .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nolze committed Jun 3, 2021
1 parent b0563d2 commit c56c7e4
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,20 @@ notifications:
email: false
language: python
python:
- '2.7'
- '3.6'
- '2.7'
- '3.6'
cache: pip
env:
global:
- secure: "xo+tYIDzOutpcE0kYTBTWrWDIpAQ/achm3qPlRouDy+NycP6MXmQTwqtKulUywZ7HJdIFoyHhDWZWDmIGzwPUNyWnP73VMLrHk0Z9ROCpAIVcsHQNt25W7Y0jAtvMcGkIXEOELK6/p8pdiV+lcjzo//kGG0JMkZj7FkToWxKBNhm0Xm9PUeJkBmmsp8j5ddY0Nl9388OgEhCcI9LsyzRN68PZTm7i+PhMZSy5lOLr9g08EB76L6IJgbQJaGklS4FBoW5feCLosr57ZTgxaTX1RLH1kt//Yjcc/cS0tw8+n0o/9PXTP9yINaucmWBZEdA29ifXamk+qX4N+p1hR94vzb8E84Gv9Kk30f7nwR7KwKuF8bbkpX/wYIqsBbve7AFJxYdVRMPS0Gfw4Uy0i6+rF4/KRwE6EvGOBnhl5xaUndsd5nzPEqchhSon/w04LChagzx5svWKQ10ArpzC0JMZ8VtYIYuvoxCA17kC3reYWVR6yvcou44dpplbKC7Z1/Xn+peXY5a2THylE7RFPKRQAKQLVtoZZiU23PgVSQ/y29FWKH2JB21GfXyngOzo1Ot/jEhQzv1x+9wXs78Pu/NO0nYtFj10K37Mc6rwoG30XIPeRCaok3DbLp81ILqYIKTdXmWMuXQ4IunBtwk6Ab5jdz0SRCLt9Y5B8CfRr7kg1U="
before_install:
- pip install poetry codecov
- pip install poetry codecov
install:
- poetry install
- poetry install
script:
- poetry run coverage run -m pytest -v
- poetry run coverage run -m pytest -v
after_success:
- codecov
- codecov
deploy:
provider: script
script: poetry publish --username nolze --password $PYPI_PASS --build
script: poetry config pypi-token.pypi "${POETRY_PYPI_TOKEN_PYPI}" && poetry publish --no-interaction --build
on:
tags: true
branch: master
Expand Down

0 comments on commit c56c7e4

Please sign in to comment.