该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。
拉取镜像更新于 。
- 1月 26, 2022
-
-
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- 12月 21, 2021
-
-
由 Yorick Peterse 创作于
This adds a RuboCop rule that disallows the usage of `SomeModel.establish_connection`, as this pattern can break database configurations and slows down the tests. See https://gitlab.com/gitlab-org/gitlab/-/issues/338653 for more information.
-
- 2月 12, 2021
-
-
由 Markus Koller 创作于
Auto-corrected with Rubocop
-
- 12月 22, 2019
-
-
由 Stan Hu 创作于
If a spec such as `wiki_pipeline_spec.rb` included a NULL byte in the example text, then the `insert-rspec-profiling-data` script would fail with an `invalid byte sequence` error (e.g. https://gitlab.com/gitlab-org/gitlab/-/jobs/386527522). To avoid this, we do two things: 1. Drop the NULL byte from the example test. 2. Modify the `insert-rspec-profiling-data` script to sanitize the CSV. Closes https://gitlab.com/gitlab-org/gitlab/issues/120012
-
- 7月 25, 2019
-
-
由 Heinrich Lee Yu 创作于
Changes all calls to data_source_exists? to table_exists? since that is the intent of these calls
-
由 Heinrich Lee Yu 创作于
Changes all calls to data_source_exists? to table_exists? since that is the intent of these calls
-
- 3月 30, 2019
-
-
由 Nick Thomas 创作于
We also enable the rubocop that makes it mandatory
-
- 3月 12, 2019
-
-
由 Stan Hu 创作于
Instead of inserting a row after each example to an external database, we save the CI profiling reports into the `rspec_profiling` directory and insert the data in the update-tests-metadata CI stage. This should make each spec run faster and also reduce the number of PostgreSQL connections needed by concurrent CI builds. `scripts/insert-rspec-profiling-data` also inserts one file at a time via the PostgreSQL COPY command for faster inserts. The one side effect is that the `created_at` and `updated_at` timestamps aren't available since they aren't generated in the CSV. Closes https://gitlab.com/gitlab-org/gitlab-ee/issues/10154
-