Alexey Gerasimchuck
Alexey Gerasimchuck
Note: I ran this test on Ubuntu: ``` lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 22.04.4 LTS Release: 22.04 Codename: jammy ```
@alexey-milovidov Please review these similar changes to your PR: https://github.com/ClickHouse/ClickHouse/pull/67779
Flaky check failed: https://s3.amazonaws.com/clickhouse-test-reports/67785/6897178c41286fd3d4f3064ad8e2c716d12e002f/integration_tests_flaky_check__asan_.html Could you help me please understand why? It looks like the flaky check runs the same tests in parallel using a **single python fixture**. The test...
Update: I added `test_session_log` to the `tests/integration/parallel_skip.json` list. I hope that will help.
The test failed again, and the output looks the same as before. It seems that the same fixture is used to run several tests in parallel. How can I run...
I reproduced the flaky check result by this command: `sudo ./tests/integration/runner "test_session_log" --count 5 --parallel 1 --binary build/programs/clickhouse` - All test runs use a single module-level fixture. I don't know...
Update: 1) Fixed session log parallel/sequenced test work. Now each test case creates it's own user. That allows to run tests in sequence using a single fixture. 2) Reduced code...