Skip to content

Commit

Permalink
update to staging
Browse files Browse the repository at this point in the history
  • Loading branch information
JerrySentry committed Nov 27, 2023
1 parent cff8a2e commit 43661ab
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion app/calculator.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ def double_it(x):
return x*2

def wacko(x):
return x*x*x
return x+x+x
2 changes: 1 addition & 1 deletion app/dictionary.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ def ops():
return "Opposites or rivals from another gang or opposing group"

def computer():
return "Smart machines of the future"
return "Da smart machines of the future"
2 changes: 1 addition & 1 deletion app/test_dictionary.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ def test_ops():
assert Dictionary.ops() == "Opposites or rivals from another gang or opposing group"

def test_computer():
assert Dictionary.computer() == "Smart machines of the future"
assert Dictionary.computer() == "Da smart machines of the future"
12 changes: 8 additions & 4 deletions coverage.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" ?>
<coverage version="7.3.2" timestamp="1701046932154" lines-valid="271" lines-covered="82" line-rate="0.3026" branches-covered="0" branches-valid="0" branch-rate="0" complexity="0">
<coverage version="7.3.2" timestamp="1701052812269" lines-valid="275" lines-covered="86" line-rate="0.3127" branches-covered="0" branches-valid="0" branch-rate="0" complexity="0">
<!-- Generated by coverage.py: https://coverage.readthedocs.io/en/7.3.2 -->
<!-- Based on https://raw.githubusercontent.com/cobertura/web/master/htdocs/xml/coverage-04.dtd -->
<sources>
Expand Down Expand Up @@ -219,13 +219,13 @@
</class>
</classes>
</package>
<package name="app" line-rate="0.9079" branch-rate="0" complexity="0">
<package name="app" line-rate="0.9125" branch-rate="0" complexity="0">
<classes>
<class name="__init__.py" filename="app/__init__.py" complexity="0" line-rate="1" branch-rate="0">
<methods/>
<lines/>
</class>
<class name="calculator.py" filename="app/calculator.py" complexity="0" line-rate="0.7391" branch-rate="0">
<class name="calculator.py" filename="app/calculator.py" complexity="0" line-rate="0.76" branch-rate="0">
<methods/>
<lines>
<line number="1" hits="1"/>
Expand All @@ -250,7 +250,9 @@
<line number="28" hits="1"/>
<line number="29" hits="0"/>
<line number="31" hits="1"/>
<line number="32" hits="0"/>
<line number="32" hits="1"/>
<line number="34" hits="1"/>
<line number="35" hits="0"/>
</lines>
</class>
<class name="dictionary.py" filename="app/dictionary.py" complexity="0" line-rate="0.9231" branch-rate="0">
Expand Down Expand Up @@ -303,6 +305,8 @@
<line number="35" hits="1"/>
<line number="37" hits="1"/>
<line number="38" hits="1"/>
<line number="40" hits="1"/>
<line number="41" hits="1"/>
</lines>
</class>
<class name="test_dictionary.py" filename="app/test_dictionary.py" complexity="0" line-rate="1" branch-rate="0">
Expand Down

0 comments on commit 43661ab

Please sign in to comment.