Skip to content

Commit a7cbb70

Browse files
committed
Add missing symlinks to corresponding directories
Otherwise there is a traceback with module import Signed-off-by: Petr "Stone" Hracek <[email protected]>
1 parent 52d6a73 commit a7cbb70

File tree

7 files changed

+6
-5
lines changed

7 files changed

+6
-5
lines changed

2.4-micro/test/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../test/__init__.py

2.4-micro/test/constants.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../test/constants.py

2.4/test/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../test/__init__.py

2.4/test/constants.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../test/constants.py

test/constants.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,3 @@
33
"rhel9": "-ubi9",
44
"rhel10": "-ubi10",
55
}
6-
7-
BRANCH_TO_MASTER = "master"

test/test_httpd_ex_template.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
from container_ci_suite.openshift import OpenShiftAPI
99
from container_ci_suite.utils import get_service_image, check_variables
1010

11-
from constants import BRANCH_TO_MASTER
1211
TEST_DIR = Path(os.path.abspath(os.path.dirname(__file__)))
1312

1413
if not check_variables():
@@ -31,7 +30,7 @@ def teardown_method(self):
3130
def test_httpd_ex_template_inside_cluster(self):
3231
assert self.oc_api.deploy_s2i_app(
3332
image_name=IMAGE_NAME,
34-
app=f"https://github.com/sclorg/httpd-ex#{BRANCH_TO_MASTER}",
33+
app=f"https://github.com/sclorg/httpd-ex#master",
3534
context="."
3635
)
3736
assert self.oc_api.is_template_deployed(name_in_template=self.template_name)

test/test_httpd_shared_helm_template.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
from container_ci_suite.helm import HelmChartsAPI
77

8-
from constants import TAGS, BRANCH_TO_MASTER
8+
from constants import TAGS
99

1010

1111
test_dir = Path(os.path.abspath(os.path.dirname(__file__)))

0 commit comments

Comments
 (0)