Skip to content

Commit b0cf5c5

Browse files
committed
do not check if the package is used by the Shell;
pip-downloader script cannot work correctly with difficult requirements (; platform == win, ; python_version >= 3.7, etc)
1 parent 298078c commit b0cf5c5

4 files changed

Lines changed: 2 additions & 45 deletions

File tree

scripts/utils/shell_helpers.py

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

scripts/utils/trigger_helpers.py

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
import click
66
from teamcity.messages import TeamcityServiceMessages
77

8-
from scripts.utils.shell_helpers import is_shell_uses_package
9-
108
if TYPE_CHECKING:
119
from scripts.client import TC
1210
from scripts.utils.models import AutoTestsInfo
@@ -48,13 +46,7 @@ def _run_tests_for_shell(
4846
shell_name: str,
4947
tests_info: "AutoTestsInfo",
5048
) -> Optional[int]:
51-
if not is_shell_uses_package(shell_name, tests_info):
52-
tc_msg.testIgnored(
53-
shell_name,
54-
f"{shell_name} is not uses package with this version, skipped tests",
55-
)
56-
return
57-
elif tests_info.re_run_builds and _is_last_build_successful(
49+
if tests_info.re_run_builds and _is_last_build_successful(
5850
tc, tc_msg, shell_name, tests_info
5951
):
6052
return

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ def read_file(file_name: str) -> str:
1515
install_requires=[
1616
"pygithub~=1.54",
1717
"click~=8.0",
18-
"cloudshell-pip-download~=0.4",
1918
"requests~=2.25",
2019
"pydantic~=1.7",
2120
"dohq-teamcity~=1.0.5",

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.0.1
1+
4.0.2

0 commit comments

Comments
 (0)