Skip to content

Commit 57a79df

Browse files
authored
check if coverage report appear in Circle ci (#311)
1 parent e0cc0ba commit 57a79df

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.circleci/config.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,11 @@ jobs:
122122
INSTANA_TEST: "true"
123123
command: |
124124
. venv/bin/activate
125-
pytest -v
125+
coverage run --source=instana -m pytest -v
126+
coverage report -m
127+
coverage html
128+
- store_artifacts:
129+
path: htmlcov
126130

127131
python39:
128132
docker:

tests/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,4 @@ suds-jurko>=0.6
3131
tornado>=4.5.3,<6.0
3232
uvicorn>=0.12.2;python_version>="3.6"
3333
urllib3[secure]!=1.25.0,!=1.25.1,<1.26,>=1.21.1
34+
coverage

0 commit comments

Comments
 (0)