Skip to content
Merged
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
4 changes: 3 additions & 1 deletion .github/actions/tests/local-environment-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ inputs:
description: "PC Artifact Tag"
required: true
markers:
description: 'Run tests by markers (-m). Available markers: ci, smoke, rpc, reserve, governed_map, delegator_rewards, ariadne, wizards or full'
description: 'Run tests by markers (-m). Available markers: ci, smoke, rpc, reserve, governed_map, delegator_rewards, ariadne, wizards, dolos or full'
required: true

outputs: {}
Expand Down Expand Up @@ -42,6 +42,8 @@ runs:
cd dev/local-environment
if [ "${{ inputs.markers }}" = "wizards" ]; then
bash setup.sh --non-interactive --postgres-password azMpOp4mTqhlKDmgCVQr --node-image ${{ inputs.image }} --tests -d 5
elif [ "${{ inputs.markers }}" = "dolos" ]; then
bash setup.sh --non-interactive --postgres-password azMpOp4mTqhlKDmgCVQr --node-image ${{ inputs.image }} --tests -d 6
else
bash setup.sh --non-interactive --postgres-password azMpOp4mTqhlKDmgCVQr --node-image ${{ inputs.image }} --tests
fi
Expand Down
2 changes: 2 additions & 0 deletions .github/actions/tests/run-e2e-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ runs:
markers_switch=""
if [ "${{ inputs.markers }}" = "wizards" ]; then
markers_switch="-m smoke"
elif [ "${{ inputs.markers }}" = "dolos" ]; then
markers_switch="-m smoke"
elif [ -n "${{ inputs.markers }}" ]; then
markers_switch="-m '${{ inputs.markers }}'"
fi
Expand Down
Loading
Loading