Skip to content
This repository has been archived by the owner on Feb 6, 2023. It is now read-only.

Commit

Permalink
remove unneeded cov-report option
Browse files Browse the repository at this point in the history
  • Loading branch information
kmaehashi committed Oct 30, 2017
1 parent 0aec5e4 commit 3c95896
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test_cupy_slow.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions test_slow.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 3c95896

Please sign in to comment.