We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There are many test functions that currently require running only 1 test thread and fail on multiple test threads. E.g :
1 test thread
test_da_job_process_job_failure_on_impossible_blob_length
test_da_job_process_job_failure_on_pending_block
test_da_job_process_job_success
All these tests use external services like mongodb, localstack which do not support multi thread execution on local.
mongodb
localstack
We have to run all the tests on a single thread, when running all the tests together be it in CI or local.
1 thread
Specifying Serial Tests on each tests that requires single thread execution.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Context
There are many test functions that currently require running only
1 test thread
and fail on multiple test threads.E.g :
test_da_job_process_job_failure_on_impossible_blob_length
test_da_job_process_job_failure_on_pending_block
test_da_job_process_job_success
Possible reason for only running on 1 thread :
All these tests use external services like
mongodb
,localstack
which do not support multi thread execution on local.Consequence :
We have to run all the tests on a single thread, when running all the tests together be it in CI or local.
Goal :
1 thread
.OR
Possible Solution for Goal 2 :
Specifying Serial Tests on each tests that requires single thread execution.
The text was updated successfully, but these errors were encountered: