From 1c2da3a5f088a64f6dd93e7c59bb7c78cc9b8d9c Mon Sep 17 00:00:00 2001 From: Unknown Date: Wed, 24 Jun 2020 09:41:52 -0400 Subject: [PATCH] Try with other spelling --- .travis.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2a39319..c79aabe 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,19 +12,19 @@ jobs: include: - name: Python 3.8 on Xenial Linux python: 3.8 # this works for Linux but is ignored on macOS or Windows - script: py.test --cov=translater --verbose tests/ - after_success: - - coverage report -m - - coveralls + script: pytest --cov=translater --verbose tests/ - name: Python 3.8 on macOS os: osx osx_image: xcode11.2 language: objective-c - script: py.test --cov=translater --verbose tests/ + script: pytest --cov=translater --verbose tests/ - name: "Python 3.8 on Windows" os: windows # Windows 10.0.17134 N/A Build 17134 language: shell # 'language: python' is an error on Travis CI Windows - script: py.test --cov=translater --verbose tests/ + script: pytest --cov=translater --verbose tests/ + after_success: + - coverage report -m + - coveralls - stage: deploy script: echo "Deploying to PyPi and GitHub releases ..." deploy: