Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dkirov-dd committed Dec 16, 2024
1 parent d28e6bb commit 17d2867
Show file tree
Hide file tree
Showing 7 changed files with 419 additions and 393 deletions.
9 changes: 9 additions & 0 deletions .codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,10 @@ coverage:
target: 75
flags:
- mesos_master
Milvus:
target: 75
flags:
- milvus
MongoDB:
target: 75
flags:
Expand Down Expand Up @@ -1254,6 +1258,11 @@ flags:
paths:
- mesos_slave/datadog_checks/mesos_slave
- mesos_slave/tests
milvus:
carryforward: true
paths:
- milvus/datadog_checks/milvus
- milvus/tests
mongo:
carryforward: true
paths:
Expand Down
20 changes: 20 additions & 0 deletions .github/workflows/test-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2494,6 +2494,26 @@ jobs:
minimum-base-package: ${{ inputs.minimum-base-package }}
pytest-args: ${{ inputs.pytest-args }}
secrets: inherit
j062aeb0:
uses: ./.github/workflows/test-target.yml
with:
job-name: Milvus
target: milvus
platform: linux
runner: '["ubuntu-22.04"]'
repo: "${{ inputs.repo }}"
python-version: "${{ inputs.python-version }}"
standard: ${{ inputs.standard }}
latest: ${{ inputs.latest }}
agent-image: "${{ inputs.agent-image }}"
agent-image-py2: "${{ inputs.agent-image-py2 }}"
agent-image-windows: "${{ inputs.agent-image-windows }}"
agent-image-windows-py2: "${{ inputs.agent-image-windows-py2 }}"
test-py2: ${{ inputs.test-py2 }}
test-py3: ${{ inputs.test-py3 }}
minimum-base-package: ${{ inputs.minimum-base-package }}
pytest-args: ${{ inputs.pytest-args }}
secrets: inherit
j91231ff:
uses: ./.github/workflows/test-target.yml
with:
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion milvus/datadog_checks/milvus/data/conf.yaml.example
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ instances:
## @param collect_histogram_buckets - boolean - optional - default: true
## Whether or not to send histogram buckets.
#
# collect_histogram_buckets: false
# collect_histogram_buckets: true

## @param non_cumulative_histogram_buckets - boolean - optional - default: false
## Whether or not histogram buckets are non-cumulative and to come with a `lower_bound` tag.
Expand Down
774 changes: 387 additions & 387 deletions milvus/metadata.csv

Large diffs are not rendered by default.

3 changes: 0 additions & 3 deletions milvus/tests/compose/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# Use the Python slim image as a base
FROM python:3.9-slim

# Set working directory
Expand All @@ -8,6 +7,4 @@ WORKDIR /app
COPY requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir -r requirements.txt

# Copy the Python script and healthcheck script
COPY script.py /app/script.py
COPY healthcheck_script.sh /app/healthcheck_script.sh
4 changes: 2 additions & 2 deletions milvus/tests/compose/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
numpy
pymilvus
numpy==1.26.4
pymilvus==2.2.17

0 comments on commit 17d2867

Please sign in to comment.