Skip to content

Commit 310b1c3

Browse files
[ci fw-only PHP/spiral] Correct the CICD logic
1 parent 249d0eb commit 310b1c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

toolset/test_types/verifications.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ def verify_queries_count(test_instance, tbl_name, url, concurrency=512, count=2,
444444

445445
# Add a margin based on whether we're running in a CI environment
446446
queries_margin = 1.015 # For a run in CI environment
447-
if test_instance.config.is_ci:
447+
if not test_instance.config.is_ci:
448448
queries_margin = 1 # real run (Citrine or Azure) -> no margin on queries
449449
# Check for transactions failures (socket errors...)
450450
if trans_failures > 0:

0 commit comments

Comments
 (0)