Skip to content

Commit a11f4d5

Browse files
Merge pull request #86 from codecov/revert-test
test: make change
2 parents edbebb2 + c040759 commit a11f4d5

File tree

3 files changed

+4
-9
lines changed

3 files changed

+4
-9
lines changed

Diff for: app/calculator.py

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
class Calculator:
2+
23
def add(x, y):
34
return x + y
45

@@ -12,9 +13,3 @@ def divide(x, y):
1213
if y == 0:
1314
return 'Cannot divide by 0'
1415
return x * 1.0 / y
15-
16-
def power(x, y):
17-
return x**y
18-
19-
def one():
20-
return 1

Diff for: app/smiles.py

-3
This file was deleted.

Diff for: codecov.yml

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
profiling:
22
critical_files_paths:
33
- app/calculator.py
4+
5+
comment:
6+
show_critical_paths: true

0 commit comments

Comments
 (0)