mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-14 15:07:25 +00:00
fix: typo
This commit is contained in:
parent
4bc5ab26c5
commit
c4b359b430
2 changed files with 6 additions and 1 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
|
@ -22,6 +22,7 @@ lib-cov
|
||||||
# Coverage directory used by tools like istanbul
|
# Coverage directory used by tools like istanbul
|
||||||
coverage
|
coverage
|
||||||
*.lcov
|
*.lcov
|
||||||
|
.coverage
|
||||||
|
|
||||||
# nyc test coverage
|
# nyc test coverage
|
||||||
.nyc_output
|
.nyc_output
|
||||||
|
|
@ -93,3 +94,7 @@ public/
|
||||||
|
|
||||||
# macOS Finder metadata
|
# macOS Finder metadata
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
|
# python things
|
||||||
|
*.py[oc]
|
||||||
|
__pycache__
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
3from .calculator import Calculator
|
from .calculator import Calculator
|
||||||
|
|
||||||
|
|
||||||
def test_add():
|
def test_add():
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue