-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
scripts: add move tests to CI script #5345
base: develop
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 4 Skipped Deployments
|
When we have any change in iota-types (or any code which iota-framework depends on), we had to run this cmd: Do we have these tests already? I think you said we did, but I could not find after a quick search. |
print_and_run_command "cargo nextest run --config-file .config/nextest.toml --profile ci --no-fail-fast --test-threads 1 --package iota-graphql-rpc --test e2e_tests --test examples_validation_tests --features pg_integration ${ENABLE_NO_CAPTURE:+--nocapture}" | ||
print_and_run_command "cargo nextest run --config-file .config/nextest.toml --profile ci --no-fail-fast --test-threads 1 --package iota-graphql-rpc --lib --features pg_integration -- test_query_cost ${ENABLE_NO_CAPTURE:+--nocapture}" | ||
print_and_run_command "cargo nextest run --config-file .config/nextest.toml --profile ci --no-fail-fast --test-threads 8 --package iota-graphql-e2e-tests --features pg_integration ${ENABLE_NO_CAPTURE:+--nocapture}" | ||
print_and_run_command "cargo nextest run --config-file .config/nextest.toml --profile ci --no-fail-fast --test-threads 1 --package iota-cluster-test --test local_cluster_test --features pg_integration ${ENABLE_NO_CAPTURE:+--nocapture}" | ||
print_and_run_command "cargo nextest run --config-file .config/nextest.toml --profile ci --no-fail-fast --test-threads 1 --package iota-indexer --test ingestion_tests --features pg_integration ${ENABLE_NO_CAPTURE:+--nocapture}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we're adding the config file we may as well create a profile instead of defining all the options in the command
Description of change
This PR adds the workflows to run the "move tests" to the
rust_tests.sh
script.It also fixes #5354
Type of change
How the change has been tested
Changed tests run locally.
Change checklist