Skip to content

Commit

Permalink
don't install pytest-codspeed on non x86_64 machines (#895)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhewitt authored Aug 16, 2023
1 parent e56491e commit b57f5fd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ hypothesis==6.79.4
# pandas doesn't offer prebuilt wheels for all versions and platforms we test in CI e.g. aarch64 musllinux
pandas==2.0.3; python_version >= "3.9" and python_version < "3.12" and implementation_name == "cpython" and platform_machine == 'x86_64'
pytest==7.4.0
pytest-codspeed~=2.1.0; implementation_name == "cpython"
# we run codspeed benchmarks on x86_64 CPython (i.e. native github actions architecture)
pytest-codspeed~=2.1.0; implementation_name == "cpython" and platform_machine == 'x86_64'
pytest-examples==0.0.10
pytest-speed==0.3.5
pytest-mock==3.11.1
Expand Down

0 comments on commit b57f5fd

Please sign in to comment.