Skip to content

Commit

Permalink
Build mac CI on python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew-lidar committed Oct 23, 2024
1 parent 116aa44 commit 7b8c589
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,10 @@ jobs:
- name: install deps
run: brew install cmake pkg-config jsoncpp eigen curl libtins glfw glew spdlog flatbuffers
- name: install python-deps
run: pip3 install pytest pytest-xdist --break-system-packages
run: python3.12 -m pip3 install pytest pytest-xdist --break-system-packages
- name: build python
run: cd python && python3 -m pip install -e .[test] --break-system-packages
run: cd python && python3.12 -m pip install -e .[test] --break-system-packages
- name: set netparams
run: sudo sysctl -w net.inet.udp.maxdgram=65535
- name: run tests
run: cd python/tests && pytest -n3
run: cd python/tests && python3.12 -m pytest -n3

0 comments on commit 7b8c589

Please sign in to comment.