Skip to content

Commit be8cd5a

Browse files
committed
feat(regression): add "many utxos" test option
Extend regression.sh and workflow to support running the "many utxos" test. This adds a new MARKEXPR value and updates the workflow choices to include "many utxos" for targeted test execution.
1 parent 85212c0 commit be8cd5a

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/regression.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ if [ "$MARKEXPR" = "all" ]; then
4949
elif [ "$MARKEXPR" = "conway only" ]; then
5050
unset MARKEXPR
5151
export TESTS_DIR="cardano_node_tests/tests/tests_conway"
52+
elif [ "$MARKEXPR" = "many utxos" ]; then
53+
unset MARKEXPR
54+
export TESTS_DIR="cardano_node_tests/tests/test_tx_many_utxos.py"
5255
elif [ "$MARKEXPR" = "dbsync config" ]; then
5356
export CLUSTERS_COUNT=1
5457
export MARKEXPR="(dbsync and smoke) or dbsync_config"

.github/workflows/regression.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ on:
2626
- team_plutus
2727
- not long
2828
- conway only
29+
- many utxos
2930
default: all
3031
topology:
3132
type: choice

0 commit comments

Comments
 (0)