From 3c958967cb0f4673bca1cdf950087a581ae8e3a8 Mon Sep 17 00:00:00 2001 From: Kenichi Maehashi Date: Mon, 30 Oct 2017 10:53:54 +0900 Subject: [PATCH] remove unneeded cov-report option --- test_cupy_slow.sh | 4 ++-- test_slow.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test_cupy_slow.sh b/test_cupy_slow.sh index aa73d0c1..9e4ba9b6 100755 --- a/test_cupy_slow.sh +++ b/test_cupy_slow.sh @@ -7,7 +7,7 @@ export PYTHONWARNINGS="ignore::FutureWarning" export CUPY_DUMP_CUDA_SOURCE_ON_ERROR=1 if [ $CUDNN = none ]; then - python -m pytest --cov-report=xml --cov -m 'slow and not cudnn' tests + python -m pytest --cov -m 'slow and not cudnn' tests else - python -m pytest --cov-report=xml --cov -m 'slow' tests + python -m pytest --cov -m 'slow' tests fi diff --git a/test_slow.sh b/test_slow.sh index ec802aeb..27fe9873 100755 --- a/test_slow.sh +++ b/test_slow.sh @@ -16,7 +16,7 @@ export PYTHONWARNINGS="ignore::FutureWarning" export CUPY_DUMP_CUDA_SOURCE_ON_ERROR=1 if [ $CUDNN = none ]; then - python -m pytest --cov-report=xml --cov -m 'slow and not cudnn' tests + python -m pytest --cov -m 'slow and not cudnn' tests else - python -m pytest --cov-report=xml --cov -m 'slow' tests + python -m pytest --cov -m 'slow' tests fi