You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -124,7 +124,7 @@ Test execution can be configured using environment variables.
124
124
125
125
When running tests using the `./.github/regression.sh` script, you can also use:
126
126
127
-
* `CI_BYRON_CLUSTER` – start local cluster in Byron era, and progress to later eras by HFs (same effect as `SCRIPTS_DIRNAME=conway`).
127
+
* `CI_BYRON_CLUSTER` – start local cluster in Byron era, and progress to later eras by HFs (same effect as `SCRIPTS_DIRNAME=conway_slow`).
128
128
* `NODE_REV` – revision of `cardano-node` (default: 'master').
129
129
* `DBSYNC_REV` – revision of `cardano-db-sync` (default: unset; db-sync is not used by default).
130
130
* `CARDANO_CLI_REV` – revision of `cardano-cli` (default: unset; cardano-cli bundled in cardano-node repo is used by default).
@@ -138,16 +138,16 @@ For example:
138
138
NUM_POOLS=6 MIXED_P2P=1 ./.github/regression.sh
139
139
```
140
140
141
-
* Running tests on local cluster instances using 15 pytest workers, Conway cluster era, cluster scripts that start a cluster directly in Conway era, and selecting only tests without 'long' marker that also match the given `-k` pytest argument:
141
+
* Running tests on local cluster instances using 15 pytest workers and selecting only tests without 'long' marker that also match the given `-k` pytest argument:
142
142
143
143
```sh
144
-
TEST_THREADS=15 CLUSTER_ERA=conway SCRIPTS_DIRNAME=conway_fast PYTEST_ARGS="-k 'test_stake_pool_low_cost or test_reward_amount'" MARKEXPR="not long" ./.github/regression.sh
144
+
TEST_THREADS=15 PYTEST_ARGS="-k 'test_stake_pool_low_cost or test_reward_amount'" MARKEXPR="not long" ./.github/regression.sh
145
145
```
146
146
147
-
* Running tests on Shelley-qa testnet with '8.0.0' release of `cardano-node`:
147
+
* Running tests on Preview testnet with '10.4.1' release of `cardano-node`:
## Local usage for test development (useful only for test developers)
@@ -245,7 +245,7 @@ To restart the running cluster (e.g., after upgrading `cardano-node` and `cardan
245
245
246
246
**NOTE** <!-- markdownlint-disable-line MD036 -->
247
247
248
-
Restarting the running development cluster is useful mainly when using the "conway" start scripts (not the "conway_fast" version). It takes approximately 30 minutes for the local cluster instance to progress from Byron to Conway. Starting the local cluster using the "conway_fast" version takes less than 1 minute.
248
+
Restarting the running development cluster is useful mainly when using the "conway_slow" start scripts (not the "conway_fast" version). It takes approximately 40 minutes for the local cluster instance to progress from Byron to Conway. Starting the local cluster using the "conway_fast" version takes about 1 minute.
0 commit comments