Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 0 additions & 27 deletions .github/workflows/repo.yml

This file was deleted.

49 changes: 0 additions & 49 deletions .pre-commit-config.yaml

This file was deleted.

4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,15 @@ dependencies = [
"setuptools", # for distutils
"Cython",
"scons",
"pre-commit",
"ruff",
"mypy",
"parameterized",
"coverage",
"numpy",
"pytest",
"cppcheck",
"cpplint",
"codespell",
]

# https://beta.ruff.rs/docs/configuration/#using-pyprojecttoml
Expand Down
13 changes: 10 additions & 3 deletions test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,16 @@ source ./setup.sh
scons -j8

# *** lint ***
#ruff check .
#mypy python/
pre-commit run --all-files
ruff check .
mypy msgq/

#codespell -L ned --builtin clear,rare,informal,usage,code,names,en-GB_to_en-US

#cppcheck --error-exitcode=1 --inline-suppr --language=c++ \
# --force --quiet -j4 --check-level=exhaustive
#pre-commit run --all-files

exit 0

# *** test ***
pytest
Loading