Skip to content

Commit 1c3f056

Browse files
committed
fix riotfile
1 parent 5e719bf commit 1c3f056

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

riotfile.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3225,7 +3225,7 @@ def select_pys(min_version: str = MIN_PYTHON_VERSION, max_version: str = MAX_PYT
32253225
Venv(
32263226
name="profile-v2",
32273227
# NB riot commands that use this Venv must include --pass-env to work properly
3228-
command="python -m tests.profiling.run pytest -v --no-cov --capture=no --benchmark-disable --ignore='tests/profiling_v2/collector/test_memalloc.py' {cmdargs} tests/profiling_v2", # noqa: E501
3228+
command="python -m tests.profiling_v2.run pytest -v --no-cov --capture=no --benchmark-disable --ignore='tests/profiling_v2/collector/test_memalloc.py' {cmdargs} tests/profiling_v2", # noqa: E501
32293229
env={
32303230
"DD_PROFILING_ENABLE_ASSERTS": "1",
32313231
"CPUCOUNT": "12",
@@ -3248,7 +3248,7 @@ def select_pys(min_version: str = MIN_PYTHON_VERSION, max_version: str = MAX_PYT
32483248
venvs=[
32493249
Venv(
32503250
name="profile-v2-uwsgi",
3251-
command="python -m tests.profiling.run pytest -v --no-cov --capture=no --benchmark-disable {cmdargs} tests/profiling_v2/test_uwsgi.py", # noqa: E501
3251+
command="python -m tests.profiling_v2.run pytest -v --no-cov --capture=no --benchmark-disable {cmdargs} tests/profiling_v2/test_uwsgi.py", # noqa: E501
32523252
pys=select_pys(max_version="3.13"),
32533253
pkgs={
32543254
"uwsgi": "<2.0.30",
@@ -3366,7 +3366,7 @@ def select_pys(min_version: str = MIN_PYTHON_VERSION, max_version: str = MAX_PYT
33663366
),
33673367
Venv(
33683368
name="profile-v2-memalloc",
3369-
command="python -m tests.profiling.run pytest -v --no-cov --capture=no --benchmark-disable {cmdargs} tests/profiling_v2/collector/test_memalloc.py", # noqa: E501
3369+
command="python -m tests.profiling_v2.run pytest -v --no-cov --capture=no --benchmark-disable {cmdargs} tests/profiling_v2/collector/test_memalloc.py", # noqa: E501
33703370
# skipping v3.14 for now due to an unstable `lz4 ` lib issue: https://gitlab.ddbuild.io/DataDog/apm-reliability/dd-trace-py/-/jobs/1163312347
33713371
pys=select_pys(max_version="3.13"),
33723372
pkgs={

0 commit comments

Comments
 (0)