Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

F2 aux override speedup #46

Merged
merged 11 commits into from
Aug 21, 2023
Merged
3 changes: 2 additions & 1 deletion build_and_test.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
(cd rust/fastsim-core/ && cargo test) && \
# build and test with local version of `fastsim-proc-macros`
(cd rust/fastsim-core/ && cargo test --features dev-proc-macros) && \
(cd rust/fastsim-cli/ && cargo test) && \
pip install -qe ".[dev]" && \
pytest -v python/fastsim/tests/
5 changes: 5 additions & 0 deletions build_and_test_published.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# build and test with published version of `fastsim-proc-macros`
(cd rust/fastsim-core/ && cargo test) && \
(cd rust/fastsim-cli/ && cargo test) && \
pip install -qe ".[dev]" && \
pytest -v python/fastsim/tests/
Loading