Skip to content

Commit 1fc1554

Browse files
committed
fix(ci): codacy errors for pr
1 parent c87af04 commit 1fc1554

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

commit_helper/utils/flag_commit_handler.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
from .text_utils import debug
77
from .text_utils import get_text
88
from .text_utils import get_context
9-
from .text_utils import handle_context_arg
10-
from .text_utils import handle_tag_message_args
119
# conventions imports
1210
from commit_helper.conventions.karma_angular import angular_convention
1311
from commit_helper.conventions.changelog import changelog_convention

commit_helper/utils/utils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
from commit_helper.conventions.karma_angular import angular_convention
77
from commit_helper.conventions.changelog import changelog_convention
88
from commit_helper.conventions.symphony_cmf import symphony_convention
9-
from commit_helper.conventions.no_convention import just_message
109

1110

1211
supported_conventions = [

release.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#! /bin/bash
2+
3+
python3 setup.py sdist bdist_wheel
4+
5+
if "$1" == "test"; then
6+
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
7+
fi
8+
9+
if "$1" == "deploy"; then
10+
twine upload dist/*
11+
fi

0 commit comments

Comments
 (0)