Some checks failed
Docs CI / lint-and-preview (push) Has been cancelled
feat(sbomservice): Add placeholder for SHA256SUMS in LNM v1 fixtures docs(devportal): Create README for SDK archives in public directory build(devportal): Implement offline bundle build script test(devportal): Add link checker script for validating links in documentation test(devportal): Create performance check script for dist folder size test(devportal): Implement accessibility check script using Playwright and Axe docs(devportal): Add SDK quickstart guide with examples for Node.js, Python, and cURL feat(excititor): Implement MongoDB storage for airgap import records test(findings): Add unit tests for export filters hash determinism feat(findings): Define attestation contracts for ledger web service feat(graph): Add MongoDB options and service collection extensions for graph indexing test(graph): Implement integration tests for MongoDB provider and service collection extensions feat(zastava): Define configuration options for Zastava surface secrets build(tests): Create script to run Concelier linkset tests with TRX output
23 lines
803 B
Bash
23 lines
803 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Minimal helper to run the LNM-21-002/003-related slices with TRX output.
|
|
# Use a clean environment to reduce "invalid test source" issues seen locally.
|
|
export DOTNET_CLI_TELEMETRY_OPTOUT=1
|
|
export DOTNET_ROLL_FORWARD=Major
|
|
|
|
root_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
pushd "$root_dir" >/dev/null
|
|
|
|
dotnet test \
|
|
src/Concelier/__Tests/StellaOps.Concelier.Core.Tests/StellaOps.Concelier.Core.Tests.csproj \
|
|
--filter "AdvisoryObservationAggregationTests" \
|
|
--logger "trx;LogFileName=core-linksets.trx"
|
|
|
|
dotnet test \
|
|
src/Concelier/__Tests/StellaOps.Concelier.Storage.Mongo.Tests/StellaOps.Concelier.Storage.Mongo.Tests.csproj \
|
|
--filter "ConcelierMongoLinksetStoreTests" \
|
|
--logger "trx;LogFileName=storage-linksets.trx"
|
|
|
|
popd >/dev/null
|