Skip to content

Commit 39e3c5d

Browse files
authored
Fix Git EntryPoint (#101)
1 parent 4e8257a commit 39e3c5d

5 files changed

Lines changed: 11 additions & 42 deletions

File tree

pdm.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ test = [
4848

4949
# Plugin registration
5050
[project.entry-points."cppython.scm"]
51-
cmake = "cppython.plugins.git:Git"
51+
cmake = "cppython.plugins.git:GitSCM"
5252

5353
[project.scripts]
5454
cppython = "cppython.console.interface:cli"

tests/integration/test_version_control.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"""
33

44
import pytest
5-
from pytest_cppython.plugin import SCMIntegrationTests
5+
from pytest_cppython.tests import SCMIntegrationTests
66

77
from cppython.plugins.git import GitSCM
88

tests/unit/test_project.py

Lines changed: 0 additions & 31 deletions
This file was deleted.

tests/unit/test_version_control.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"""
33

44
import pytest
5-
from pytest_cppython.plugin import SCMUnitTests
5+
from pytest_cppython.tests import SCMUnitTests
66

77
from cppython.plugins.git import GitSCM
88

0 commit comments

Comments
 (0)