From ea8b1a50f1869669aa6e38c7cb08d07f8d6f3475 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Sun, 9 Dec 2018 19:56:37 +0400 Subject: [PATCH] :white_check_mark: Error out when tests fail --- scripts/test.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/test.sh b/scripts/test.sh index e2b76b237..041fabc5d 100644 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -1,9 +1,11 @@ -#!/bin/sh -e +#!/usr/bin/env bash + +set -e +set -x export VERSION_SCRIPT="import sys; print('%s.%s' % sys.version_info[0:2])" export PYTHON_VERSION=`python -c "$VERSION_SCRIPT"` -set -x PYTHONPATH=. pytest --cov=fastapi --cov=tests --cov-fail-under=100 --cov-report=term-missing ${@} --cov-report=html mypy fastapi --disallow-untyped-defs