Skip to content

Commit eb9a484

Browse files
ci: update CI parametric tests configuration [backport 1.16] (#6281)
Backport 19ad829 from #6260 to 1.16. Uses new system-tests parametric scenario ## Checklist - [x] Change(s) are motivated and described in the PR description. - [x] Testing strategy is described if automated tests are not included in the PR. - [x] Risk is outlined (performance impact, potential for breakage, maintainability, etc). - [x] Change is maintainable (easy to change, telemetry, documentation). - [x] [Library release note guidelines](https://ddtrace.readthedocs.io/en/stable/releasenotes.html) are followed. If no release note is required, add label `changelog/no-changelog`. - [x] Documentation is included (in-code, generated user docs, [public corp docs](https://github.com/DataDog/documentation/)). - [x] Backport labels are set (if [applicable](https://ddtrace.readthedocs.io/en/latest/contributing.html#backporting)) ## Reviewer Checklist - [x] Title is accurate. - [x] No unnecessary changes are introduced. - [x] Description motivates each change. - [x] Avoids breaking [API](https://ddtrace.readthedocs.io/en/stable/versioning.html#interfaces) changes unless absolutely necessary. - [x] Testing strategy adequately addresses listed risk(s). - [x] Change is maintainable (easy to change, telemetry, documentation). - [x] Release note makes sense to a user of the library. - [x] Reviewer has explicitly acknowledged and discussed the performance implications of this PR as reported in the benchmarks PR comment. - [x] Backport labels are set in a manner that is consistent with the [release branch maintenance policy](https://ddtrace.readthedocs.io/en/latest/contributing.html#backporting) Co-authored-by: Roberto Montero <[email protected]>
1 parent 4c5799e commit eb9a484

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

.github/workflows/system-tests.yml

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
parametric:
111111
runs-on: ubuntu-latest
112112
env:
113-
CLIENTS_ENABLED: python
113+
TEST_LIBRARY: python
114114
PYTHON_DDTRACE_PACKAGE: git+https://github.com/Datadog/dd-trace-py.git@${{ github.sha }}
115115
steps:
116116
- name: Checkout system tests
@@ -120,9 +120,17 @@ jobs:
120120
- uses: actions/setup-python@v4
121121
with:
122122
python-version: '3.9'
123+
- name: Build
124+
run: ./build.sh -i runner
123125
- name: Run
124-
run: |
125-
cd parametric
126-
pip install wheel
127-
pip install -r requirements.txt
128-
./run.sh
126+
run: ./run.sh PARAMETRIC
127+
128+
- name: Compress artifact
129+
if: ${{ always() }}
130+
run: tar -czvf artifact.tar.gz $(ls | grep logs)
131+
- name: Upload artifact
132+
uses: actions/upload-artifact@v3
133+
if: ${{ always() }}
134+
with:
135+
name: logs_parametric
136+
path: artifact.tar.gz

0 commit comments

Comments
 (0)