Skip to content
This repository was archived by the owner on Jul 4, 2023. It is now read-only.

Commit bf9b57c

Browse files
committed
Adding untested code
1 parent 03a8b73 commit bf9b57c

2 files changed

Lines changed: 7 additions & 0 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ __pycache__/
66
# C extensions
77
*.so
88

9+
.coverage
10+
coverage.xml
11+
912
# Distribution / packaging
1013
.Python
1114
build/

awesome/code_fib.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,7 @@ def fib(n):
22
if n <= 1:
33
return 0
44
return fib(n - 1) + fib(n - 2)
5+
6+
7+
def untested_code(a):
8+
raise Exception()

0 commit comments

Comments
 (0)