Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
martukas committed Oct 29, 2024
1 parent a59c0bc commit 3be0b01
Show file tree
Hide file tree
Showing 6 changed files with 104 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
sudo rm -rf /var/lib/apt/lists/*
export DEBIAN_FRONTEND=noninteractive
export FORCED_ROOT=1
./software/controller/controller.sh install
./software/common/common.sh install
- run:
name: Run tests & generate coverage reports
command: |
Expand Down
48 changes: 47 additions & 1 deletion docs/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions docs/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ sphinx-sitemap = "^2.6.0"
mlx-traceability = "^11.6.0"
pandas = "^2.2.3"

[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
Expand Down
48 changes: 47 additions & 1 deletion software/debug/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions software/debug/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ pandas = "^2.2.3"
gitpython = "^3.1.43"
platformio = "^6.1.16"

[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
Expand Down
6 changes: 3 additions & 3 deletions software/gui/gui.sh
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ configure_conan() {
}

run_cppcheck() {
create_clean_directory build/cppcheck
clean_dir build/cppcheck
cppcheck --enable=all --std=c++17 --inconclusive --force --inline-suppr --quiet \
--enable=information --check-config \
-I ../common/generated_libs/protocols \
Expand Down Expand Up @@ -220,7 +220,7 @@ elif [ "$1" == "build" ]; then
checks_opt="no"
fi

create_clean_directory build
clean_dir build

pushd build
if [ "$checks_opt" == "yes" ]; then
Expand Down Expand Up @@ -268,7 +268,7 @@ elif [ "$1" == "test" ]; then
j_opt="-j${NUM_CPUS}"
fi

create_clean_directory build
clean_dir build

pushd build
cmake -DCMAKE_BUILD_TYPE=Debug -DCOV=1 ..
Expand Down

0 comments on commit 3be0b01

Please sign in to comment.