File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,12 @@ jobs:
15
15
test_integration :
16
16
runs-on : ubuntu-latest
17
17
if : >
18
+ (github.event_name == 'pull_request' &&
18
19
github.event.pull_request.draft == false &&
19
20
!contains(github.event.pull_request.labels.*.name, 'ci/skip') &&
20
21
!contains(github.event.pull_request.head.ref, 'datadog-api-spec/test/') &&
21
- contains(github.event.pull_request.labels.*.name, 'ci/integrations')
22
+ contains(github.event.pull_request.labels.*.name, 'ci/integrations')) ||
23
+ github.event_name == 'schedule'
22
24
services :
23
25
datadog-agent :
24
26
image : datadog/agent:latest
41
43
shell : bash
42
44
env :
43
45
CI : " true"
44
- DD_AGENT_HOST : datadog-agent
46
+ DD_AGENT_HOST : localhost
45
47
DD_ENV : prod
46
48
DD_SERVICE : datadog-api-client-python
47
49
DD_TAGS : " team:integration-tools-and-libraries"
You can’t perform that action at this time.
0 commit comments