diff --git a/.github/workflows/test_and_docs.yml b/.github/workflows/test_and_docs.yml index d413f8de..ebc99890 100644 --- a/.github/workflows/test_and_docs.yml +++ b/.github/workflows/test_and_docs.yml @@ -46,9 +46,10 @@ jobs: with: bazel-target: 'test //src/... //tests/... --config=x86_64-linux' upload-name: 'bazel-testlogs' + packages: 'fakechroot' build-docs: needs: run-tests - if: ${{ always() }} + if: ${{ needs.run-tests.result == 'success' }} uses: eclipse-score/cicd-workflows/.github/workflows/docs.yml@main permissions: contents: write diff --git a/tests/integration/smoke/smoke.py b/tests/integration/smoke/smoke.py index 75fd6e5b..923634aa 100644 --- a/tests/integration/smoke/smoke.py +++ b/tests/integration/smoke/smoke.py @@ -16,9 +16,16 @@ format_logs, ) from pathlib import Path +from attribute_plugin import add_test_properties +@add_test_properties( + partially_verifies=[], + test_type="interface-test", + derivation_technique="explorative-testing", +) def test_smoke(): + """Smoke test for the launch manager daemon.""" code, stdout, stderr = get_common_interface().run_until_file_deployed( "src/launch_manager_daemon/launch_manager" )