Skip to content

Commit 2a31e75

Browse files
feat: CI changes + Dolos local-environment tests
1 parent 085459e commit 2a31e75

File tree

16 files changed

+832
-682
lines changed

16 files changed

+832
-682
lines changed

.github/actions/tests/local-environment-tests/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ inputs:
1111
description: "PC Artifact Tag"
1212
required: true
1313
markers:
14-
description: 'Run tests by markers (-m). Available markers: ci, smoke, rpc, reserve, governed_map, delegator_rewards, ariadne, wizards or full'
14+
description: 'Run tests by markers (-m). Available markers: ci, smoke, rpc, reserve, governed_map, delegator_rewards, ariadne, wizards, dolos or full'
1515
required: true
1616

1717
outputs: {}
@@ -42,6 +42,8 @@ runs:
4242
cd dev/local-environment
4343
if [ "${{ inputs.markers }}" = "wizards" ]; then
4444
bash setup.sh --non-interactive --postgres-password azMpOp4mTqhlKDmgCVQr --node-image ${{ inputs.image }} --tests -d 5
45+
elif [ "${{ inputs.markers }}" = "dolos" ]; then
46+
bash setup.sh --non-interactive --postgres-password azMpOp4mTqhlKDmgCVQr --node-image ${{ inputs.image }} --tests -d 6
4547
else
4648
bash setup.sh --non-interactive --postgres-password azMpOp4mTqhlKDmgCVQr --node-image ${{ inputs.image }} --tests
4749
fi

.github/actions/tests/run-e2e-tests/action.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ runs:
5656
markers_switch=""
5757
if [ "${{ inputs.markers }}" = "wizards" ]; then
5858
markers_switch="-m smoke"
59+
elif [ "${{ inputs.markers }}" = "dolos" ]; then
60+
markers_switch="-m smoke"
5961
elif [ -n "${{ inputs.markers }}" ]; then
6062
markers_switch="-m '${{ inputs.markers }}'"
6163
fi

0 commit comments

Comments
 (0)