This commit is contained in:
Joachim Jablon
2021-09-25 09:50:58 +02:00
parent 38b2cf6c65
commit ebcebf7ed6
8 changed files with 272 additions and 84 deletions

28
report.md Normal file
View File

@@ -0,0 +1,28 @@
# Diff Coverage
## Diff: origin/master...HEAD, staged and unstaged changes
- tests/code.py (0.0%): Missing lines 9
## Summary
- **Total**: 1 line
- **Missing**: 1 line
- **Coverage**: 0%
## tests/code.py
Lines 5-10
```python
if arg is None:
return "a"
elif arg is True:
return "b"
return "c"
```
---