From 4318fc183e66ac8af93d4e1eebda81e24f206755 Mon Sep 17 00:00:00 2001 From: Samuel Colvin Date: Mon, 9 Dec 2019 12:19:30 +0000 Subject: [PATCH] skip codecov after fastapi tests --- .travis.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index b2d52b9..ae083ea 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,7 +29,7 @@ env: after_success: - ls -lha -- bash <(curl -s https://codecov.io/bash) -e CYTHON,DEPS +- bash <(curl -s https://codecov.io/bash) -e CYTHON,DEPS,TRAVIS_JOB_NAME stages: - name: test @@ -89,16 +89,17 @@ jobs: python: 3.8 name: 'Without Deps 3.8' script: - - pip uninstall -y cython email-validator typing-extensions devtools - - make test + - pip uninstall -y cython email-validator typing-extensions devtools + - make test env: - - 'DEPS=no' - + - 'DEPS=no' + - stage: test python: 3.7 name: 'Test FastAPI' script: - - make test-fastapi + - make test-fastapi + after_success: skip - stage: test python: 3.7