Skip to content

Commit

Permalink
only import symbols we need
Browse files Browse the repository at this point in the history
c4urself committed Dec 29, 2018
1 parent 5f6d8f7 commit 251b5ba
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_functions.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import pytest

from bumpversion.functions import *
from bumpversion.functions import NumericFunction, ValuesFunction


# NumericFunction
7 changes: 6 additions & 1 deletion tests/test_version_part.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
import pytest

from bumpversion.version_part import *
from bumpversion.version_part import (
ConfiguredVersionPartConfiguration,
NumericVersionPartConfiguration,
VersionPart,
)


@pytest.fixture(params=[None, (('0', '1', '2'),), (('0', '3'),)])
def confvpc(request):

0 comments on commit 251b5ba

Please sign in to comment.