Skip to content

Commit

Permalink
Merge pull request #153 from Pennycook/cbi-cov
Browse files Browse the repository at this point in the history
Rename cbicov to cbi-cov
  • Loading branch information
Pennycook authored Jan 22, 2025
2 parents 6450b98 + 9dc6c15 commit ceff713
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ dependencies = [

[project.scripts]
codebasin = "codebasin:__main__.main"
cbicov = "codebasin.coverage:__main__.main"
cbi-cov = "codebasin.coverage:__main__.main"

[project.urls]
"Github" = "https://www.github.com/intel/code-base-investigator"
Expand Down
6 changes: 3 additions & 3 deletions tests/cli/test_cbicov.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
from codebasin.coverage.__main__ import cli


class TestCbicov(unittest.TestCase):
class TestCbiCov(unittest.TestCase):
"""
Test cbicov command line interface.
Test cbi-cov command line interface.
"""

def setUp(self):
Expand Down Expand Up @@ -78,7 +78,7 @@ def test_compute(self):
with open(p / "bar.h", mode="w") as f:
f.write("unguarded();")

# cbicov reads compile commands from disk.
# cbi-cov reads compile commands from disk.
compile_commands = [
{
"file": str(p / "foo.cpp"),
Expand Down

0 comments on commit ceff713

Please sign in to comment.