Skip to content

Commit 0bea542

Browse files
committed
tmp
1 parent 042d74b commit 0bea542

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

magefile.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -429,6 +429,9 @@ func IntegrationFull() error {
429429
fmt.Println("Running all integration tests...")
430430

431431
return sh.RunV(pythonExecutableName, "-m", "pytest", "-m", "not slow_ee and not notarantool",
432+
"-k",
433+
"test_install_tarantool_in_docker or test_pack_rpm_use_docker or test_pack_deb_use_docker",
434+
"-v",
432435
"test/integration")
433436
}
434437

test/integration/install/test_install.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,6 +338,8 @@ def test_install_tarantool_in_docker(tt_cmd, tmp_path):
338338
tmp_path_without_config = tempfile.mkdtemp()
339339

340340
commit = get_tarantool_commit()
341+
print("===============================================")
342+
print(f"commit={commit}")
341343

342344
# Install latest tarantool.
343345
install_cmd = [
@@ -355,9 +357,11 @@ def test_install_tarantool_in_docker(tt_cmd, tmp_path):
355357
install_cmd,
356358
cwd=tmp_path_without_config,
357359
stderr=subprocess.STDOUT,
358-
stdout=subprocess.PIPE,
360+
# stdout=subprocess.PIPE,
359361
text=True,
360362
)
363+
# print("===============================================")
364+
# print(f"tt_process.stdout={version}")
361365
assert tt_process.returncode == 0
362366

363367
installed_cmd = [tmp_path / "bin" / "tarantool", "-v"]

test/utils.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -544,6 +544,8 @@ def get_tarantool_commit(tarantool_bin="tarantool"):
544544
tt_process.wait()
545545
assert tt_process.returncode == 0
546546
version = tt_process.stdout.readline()
547+
print("===============================================")
548+
print(f"version={version}")
547549

548550
match = re.match(r"Tarantool\s+(Enterprise\s+)?\d+\.\d+.*-g(?P<commit>[0-9a-f]+)$", version)
549551

0 commit comments

Comments
 (0)