This commit is contained in:
Unknown 2020-06-24 11:05:45 -04:00
parent 1c2da3a5f0
commit 1f24a8228a

View File

@ -13,6 +13,9 @@ jobs:
- name: Python 3.8 on Xenial Linux - name: Python 3.8 on Xenial Linux
python: 3.8 # this works for Linux but is ignored on macOS or Windows python: 3.8 # this works for Linux but is ignored on macOS or Windows
script: pytest --cov=translater --verbose tests/ script: pytest --cov=translater --verbose tests/
after_success:
- coverage report -m
- coveralls
- name: Python 3.8 on macOS - name: Python 3.8 on macOS
os: osx os: osx
osx_image: xcode11.2 osx_image: xcode11.2
@ -22,9 +25,6 @@ jobs:
os: windows # Windows 10.0.17134 N/A Build 17134 os: windows # Windows 10.0.17134 N/A Build 17134
language: shell # 'language: python' is an error on Travis CI Windows language: shell # 'language: python' is an error on Travis CI Windows
script: pytest --cov=translater --verbose tests/ script: pytest --cov=translater --verbose tests/
after_success:
- coverage report -m
- coveralls
- stage: deploy - stage: deploy
script: echo "Deploying to PyPi and GitHub releases ..." script: echo "Deploying to PyPi and GitHub releases ..."
deploy: deploy: