Skip to content

fix(ci_visibility): test agent error investigation #13225

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 10 commits into
base: 2.21
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitlab/services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@
DD_REMOTE_CONFIGURATION_REFRESH_INTERVAL: 5s
DD_DOGSTATSD_NON_LOCAL_TRAFFIC: true
testagent:
name: registry.ddbuild.io/images/mirror/dd-apm-test-agent/ddapm-test-agent:v1.20.0
name: registry.ddbuild.io/images/mirror/dd-apm-test-agent/ddapm-test-agent:v1.21.0
alias: testagent
entrypoint: ["sh", "-c", "retries=16; while [ $retries -gt 0 ]; do ddapm-test-agent; retries=$((retries-1)); done"]
variables:
LOG_LEVEL: INFO
SNAPSHOT_DIR: ${CI_PROJECT_DIR}/tests/snapshots
Expand Down
2 changes: 1 addition & 1 deletion .gitlab/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ build_base_venvs:
do
echo "Running riot hash: ${hash}"
riot list "${hash}"
${RIOT_RUN_CMD} "${hash}" -- --ddtrace
${RIOT_RUN_CMD} "${hash}" -- --ddtrace -v
done
./scripts/check-diff ".riot/requirements/" \
"Changes detected after running riot. Consider deleting changed files, running scripts/compile-and-prune-test-requirements and committing the result."
Expand Down
1 change: 1 addition & 0 deletions tests/ci_visibility/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# run!!!!!!
3 changes: 3 additions & 0 deletions tests/ci_visibility/api/test_api_fake_runners.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,3 +400,6 @@ def test_manual_api_fake_atr_mix_fail(self):
replace_os_env=True,
):
subprocess.run(["python", "fake_runner_atr_mix_fail.py"])


# run!
Loading