diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2022-11-16 00:09:18 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2022-11-16 00:09:18 +0000 |
commit | 21fc10ad5a7c829e64112fac37727f31f072ef33 (patch) | |
tree | 7336c449a92b4e580b54af26a6fe7256b035692c /doc/development/testing_guide/flaky_tests.md | |
parent | 9fe33f71995d8e3e83f0a30cb776aaa4a3ab4d70 (diff) | |
download | gitlab-ce-21fc10ad5a7c829e64112fac37727f31f072ef33.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/development/testing_guide/flaky_tests.md')
-rw-r--r-- | doc/development/testing_guide/flaky_tests.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/development/testing_guide/flaky_tests.md b/doc/development/testing_guide/flaky_tests.md index a06f2cf6570..cc62a0ebf03 100644 --- a/doc/development/testing_guide/flaky_tests.md +++ b/doc/development/testing_guide/flaky_tests.md @@ -31,6 +31,9 @@ it's reset to a pristine test after each test. inconsistent state, so that following tests might not know about certain columns. - [Example 2](https://gitlab.com/gitlab-org/gitlab/-/issues/368500): A test modifies data that is used by a following test. +- [Example 3](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/103434#note_1172316521): A test for a database query passes in a fresh database, but in a + CI/CD pipeline where the database is used to process previous test sequences, the test fails. This likely + means that the query itself needs to be updated to work in a non-clean database. ### Ordering assertion |