We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c012914 commit cdc64f5Copy full SHA for cdc64f5
pytest-cov.ini
@@ -1,6 +1,2 @@
1
[pytest]
2
addopts = -rs -v
3
-
4
-# We need this to make pytest "touch" every python file
5
-# in order to include them into the coverage report.
6
-python_files = *.py
scripts/coverage.sh
@@ -3,16 +3,14 @@
set -e
function cov {
- pytest ${1} \
+ pytest \
7
-c pytest-cov.ini \
8
--ignore-glob=*/setup.py \
9
- --cov opentelemetry-api \
10
- --cov opentelemetry-sdk \
11
- --cov ext \
12
- --cov examples \
+ --cov ${1} \
13
--cov-append \
14
--cov-branch \
15
- --cov-report=
+ --cov-report='' \
+ ${1}
16
}
17
18
0 commit comments