Skip to content

Commit 7a0e539

Browse files
authored
ci: temporarily disable vertica test suite [backport 1.20] (#9116)
This pull request disables the reliably-failing `vertica` test suite to unblock CI while we figure out how to resolve the failure. [This](https://app.circleci.com/pipelines/github/DataDog/dd-trace-py/60382/workflows/959242f7-9615-4cb8-a324-3a1e829071ef/jobs/3792168) is the failure currently happening on main. My attempts to use the [official image](https://hub.docker.com/r/vertica/vertica-ce) have failed so far. - [x] Change(s) are motivated and described in the PR description
1 parent 88ca500 commit 7a0e539

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

.circleci/config.templ.yml

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ mysql_image: &mysql_image mysql:5.7@sha256:03b6dcedf5a2754da00e119e2cc6094ed3c88
1414
postgres_image: &postgres_image postgres:12-alpine@sha256:c6704f41eb84be53d5977cb821bf0e5e876064b55eafef1e260c2574de40ad9a
1515
mongo_image: &mongo_image mongo:3.6@sha256:19c11a8f1064fd2bb713ef1270f79a742a184cd57d9bb922efdd2a8eca514af8
1616
httpbin_image: &httpbin_image kennethreitz/httpbin@sha256:2c7abc4803080c22928265744410173b6fea3b898872c01c5fd0f0f9df4a59fb
17-
vertica_image: &vertica_image sumitchawla/vertica:latest
17+
vertica_image: &vertica_image vertica/vertica-ce:latest
1818
rabbitmq_image: &rabbitmq_image rabbitmq:3.7-alpine
1919
testagent_image: &testagent_image ghcr.io/datadog/dd-apm-test-agent/ddapm-test-agent:v1.11.0
2020

@@ -994,21 +994,6 @@ jobs:
994994
snapshot: true
995995
docker_services: "httpbin_local"
996996

997-
vertica:
998-
<<: *contrib_job
999-
docker:
1000-
- image: *ddtrace_dev_image
1001-
- *testagent
1002-
- image: *vertica_image
1003-
environment:
1004-
- VP_TEST_USER=dbadmin
1005-
- VP_TEST_PASSWORD=abc123
1006-
- VP_TEST_DATABASE=docker
1007-
steps:
1008-
- run_test:
1009-
wait: vertica
1010-
pattern: 'vertica'
1011-
1012997
wsgi:
1013998
<<: *machine_executor
1014999
steps:

docker-compose.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ services:
143143
- ENABLED_CHECKS=trace_content_length,trace_stall,meta_tracer_version_header,trace_count_header,trace_peer_service,trace_dd_service
144144
- SNAPSHOT_IGNORED_ATTRS=span_id,trace_id,parent_id,duration,start,metrics.system.pid,metrics.system.process_id,metrics.process_id,meta.runtime-id,meta._dd.p.tid,meta.pathway.hash,metrics._dd.tracer_kr
145145
vertica:
146-
image: sumitchawla/vertica
146+
image: vertica/vertica-ce
147147
environment:
148148
- VP_TEST_USER=dbadmin
149149
- VP_TEST_PASSWORD=abc123
@@ -185,6 +185,21 @@ services:
185185
ports:
186186
- "127.0.0.1:8001:80"
187187

188+
pygoat:
189+
build:
190+
context: tests/appsec/integrations/pygoat_tests
191+
dockerfile: Dockerfile.pygoat.2.0.1
192+
ports:
193+
- "127.0.0.1:8321:8321"
194+
environment:
195+
- DD_APPSEC_ENABLED=true
196+
- DD_IAST_ENABLED=true
197+
- DD_IAST_REQUEST_SAMPLING=100
198+
- DD_IAST_VULNERABILITIES_PER_REQUEST=100
199+
- DD_REMOTE_CONFIGURATION_ENABLED=true
200+
- DD_AGENT_PORT=8126
201+
- DD_TRACE_AGENT_URL=http://testagent:8126
202+
- _DD_APPSEC_DEDUPLICATION_ENABLED=false
188203

189204
volumes:
190205
ddagent:

0 commit comments

Comments
 (0)