mirror of
https://github.com/apache/impala.git
synced 2025-12-19 09:58:28 -05:00
IMPALA-12442 removed duplicate labels for stress and execute_serially, as they resulted in running the tests twice in different suites. Most tests that had both labels expect to be run sequentially, which by definition cannot be run in our stress test suite (which runs many operations at once to stress the cluster). Updates all tests previously marked with both 'stress' and 'execute_serially' to run serially. The only test continuing to use 'stress' mode is test_ddl_stress.py which was designed for it using a separate 'test_index' parameter. Change-Id: I1f7d2017ae1bab0f2f8cb0b100c2c6cc8b4f3dcd Reviewed-on: http://gerrit.cloudera.org:8080/21905 Reviewed-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com> Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
6 lines
249 B
INI
6 lines
249 B
INI
[pytest]
|
|
addopts = -r xfE -v --tb=short --showlocals
|
|
markers =
|
|
execute_serially: tests that must not be executed in parallel
|
|
stress: stress tests running multiple clients with the test_index parameter, will be run independent of other tests
|