File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ __pycache__
99* .o
1010* .a
1111uv.lock
12+ catch2 /
1213
1314test_runner
1415
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ classifiers = [
1212 " Topic :: System :: Hardware" ,
1313]
1414dependencies = [
15+ " setuptools" , # for distutils
1516 " Cython" ,
1617 " scons" ,
1718 " pre-commit" ,
Original file line number Diff line number Diff line change @@ -19,13 +19,19 @@ export UV_PROJECT_ENVIRONMENT="$DIR/.venv"
1919uv sync --all-extras
2020source " $DIR /.venv/bin/activate"
2121
22+ rm -rf /tmp/catch2/ $DIR /msgq/catch2/
23+ git clone -b v2.x --depth 1 https://github.com/catchorg/Catch2.git /tmp/catch2
24+ pushd /tmp/catch2
25+ mv single_include/* $DIR /msgq/
26+ popd
27+
2228# *** build ***
2329scons -j8
2430
2531# *** lint ***
26- ruff check .
27- mypy python/
28-
32+ # ruff check .
33+ # mypy python/
34+ pre-commit run --all-files
2935
3036# *** test ***
3137
You can’t perform that action at this time.
0 commit comments