Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
- RUN_ENV=DEV
# Improves pytest-cov performance in python 3.12
# https://github.com/nedbat/coveragepy/issues/1665#issuecomment-1937075835
- COVERAGE_CORE=sysmon
- COVERAGE_CORE=sysmon
env_file:
- .testenv

Expand All @@ -42,3 +42,14 @@ services:
redis:
image: redis:6-alpine

minio:
image: minio/minio:latest
command: server /export
environment:
- MINIO_ACCESS_KEY=codecov-default-key
- MINIO_SECRET_KEY=codecov-default-secret
volumes:
- type: tmpfs
target: /export
tmpfs:
size: 256M
3 changes: 3 additions & 0 deletions docker/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ services:
access_key_id: codecov-default-key
secret_access_key: codecov-default-secret
verify_ssl: false
bucket: archive
port: 9000
host: minio

github:
bot:
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
[
{
"cursor": "MC44fHRlc3Q0",
"node": {
"name": "test4",
"failureRate": 0.8,
"flakeRate": 0.0,
"avgDuration": 100.0,
"totalFailCount": 20,
"totalFlakyFailCount": 0,
"totalPassCount": 5,
"totalSkipCount": 5,
"commitsFailed": 5,
"lastDuration": 100.0
}
},
{
"cursor": "MC43NXx0ZXN0Mw==",
"node": {
"name": "test3",
"failureRate": 0.75,
"flakeRate": 0.0,
"avgDuration": 100.0,
"totalFailCount": 15,
"totalFlakyFailCount": 0,
"totalPassCount": 5,
"totalSkipCount": 5,
"commitsFailed": 5,
"lastDuration": 100.0
}
},
{
"cursor": "MC42NjY2NjY2NjY2NjY2NjY2fHRlc3Qy",
"node": {
"name": "test2",
"failureRate": 0.6666666666666666,
"flakeRate": 0.0,
"avgDuration": 100.0,
"totalFailCount": 10,
"totalFlakyFailCount": 0,
"totalPassCount": 5,
"totalSkipCount": 5,
"commitsFailed": 5,
"lastDuration": 100.0
}
},
{
"cursor": "MC41fHRlc3Qx",
"node": {
"name": "test1",
"failureRate": 0.5,
"flakeRate": 0.5,
"avgDuration": 100.0,
"totalFailCount": 5,
"totalFlakyFailCount": 5,
"totalPassCount": 5,
"totalSkipCount": 5,
"commitsFailed": 5,
"lastDuration": 100.0
}
},
{
"cursor": "MC4wfHRlc3Qw",
"node": {
"name": "test0",
"failureRate": 0.0,
"flakeRate": 0.0,
"avgDuration": 100.0,
"totalFailCount": 0,
"totalFlakyFailCount": 0,
"totalPassCount": 5,
"totalSkipCount": 5,
"commitsFailed": 5,
"lastDuration": 100.0
}
}
]
Loading
Loading