-
Notifications
You must be signed in to change notification settings - Fork 413
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into cbeauchesne/crash-inv…
…estigation # Conflicts: # .github/workflows/requirements-locks.yml
- Loading branch information
Showing
344 changed files
with
6,417 additions
and
4,529 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -572,6 +572,7 @@ jobs: | |
pattern: "datastreams" | ||
|
||
tracer: | ||
parallelism: 10 | ||
<<: *contrib_job_large | ||
steps: | ||
- run_test: | ||
|
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Test Requirements Lockfiles Check | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
types: [opened, reopened, synchronize] | ||
jobs: | ||
validate: | ||
name: Check requirements lockfiles | ||
runs-on: ubuntu-latest | ||
container: ghcr.io/datadog/dd-trace-py/testrunner:latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Fixup git permissions | ||
# https://github.com/actions/checkout/issues/766 | ||
run: git config --global --add safe.directory "$GITHUB_WORKSPACE" | ||
|
||
- name: Set python interpreters | ||
run: pyenv global 3.10 3.7 3.8 3.9 3.11 3.12 | ||
|
||
- name: Install Dependencies | ||
run: pip install --upgrade pip && pip install riot | ||
|
||
- name: Generate riot locks | ||
run: scripts/compile-and-prune-test-requirements | ||
|
||
- name: Check git diff | ||
run: scripts/check-diff '.riot/requirements/' 'Mismatches found between .riot/requirements/*.txt and riotfile.py. Run scripts/compile-and-prune-test-requirements and commit the result.' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# | ||
# This file is autogenerated by pip-compile with Python 3.12 | ||
# by the following command: | ||
# | ||
# pip-compile --no-annotate .riot/requirements/10bdae9.in | ||
# | ||
attrs==23.2.0 | ||
blinker==1.8.2 | ||
click==7.1.2 | ||
coverage[toml]==7.5.4 | ||
flask==1.1.4 | ||
flask-caching==1.10.1 | ||
hypothesis==6.45.0 | ||
iniconfig==2.0.0 | ||
itsdangerous==1.1.0 | ||
jinja2==2.11.3 | ||
markupsafe==1.1.1 | ||
mock==5.1.0 | ||
opentracing==2.4.0 | ||
packaging==24.1 | ||
pluggy==1.5.0 | ||
pytest==8.2.2 | ||
pytest-cov==5.0.0 | ||
pytest-mock==3.14.0 | ||
pytest-randomly==3.15.0 | ||
python-memcached==1.62 | ||
redis==5.0.7 | ||
sortedcontainers==2.4.0 | ||
werkzeug==1.0.1 |
Oops, something went wrong.