add test.sh (#649)

* add test.sh

* kinda works

* run in ci

* setup

* zmq

* lil more

* mv catch2

* rm docker
This commit is contained in:
Adeeb Shihadeh
2025-09-06 17:23:58 -07:00
committed by GitHub
parent 5483a02de3
commit 7352ef9bff
8 changed files with 116 additions and 108 deletions

19
test.sh Executable file
View File

@@ -0,0 +1,19 @@
#!/usr/bin/env bash
set -e
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null && pwd)"
cd $DIR
# *** env setup ***
source ./setup.sh
# *** build ***
scons -j8
# *** lint ***
#ruff check .
#mypy python/
pre-commit run --all-files
# *** test ***
pytest