diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-04-03 12:09:52 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-04-03 12:09:52 +0000 |
commit | 546ddc3f6ac96fdf09934390a938bb391d07dc94 (patch) | |
tree | d0c92fca27ee76b5a20b7bfb56bda6f057424127 /doc/development/testing_guide | |
parent | 04baa85554ff13bdd4d6f4e6bb24119d17608fee (diff) | |
download | gitlab-ce-546ddc3f6ac96fdf09934390a938bb391d07dc94.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/development/testing_guide')
-rw-r--r-- | doc/development/testing_guide/ci.md | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/doc/development/testing_guide/ci.md b/doc/development/testing_guide/ci.md index 5bdd0a69d7f..6917639454c 100644 --- a/doc/development/testing_guide/ci.md +++ b/doc/development/testing_guide/ci.md @@ -25,23 +25,18 @@ After that, the next pipeline will use the up-to-date `knapsack/report-master.js ## Monitoring -The GitLab test suite is [monitored] for the `master` branch, and any branch +The GitLab test suite is [monitored](../performance.md#rspec-profiling) for the `master` branch, and any branch that includes `rspec-profile` in their name. -A [public dashboard] is available for everyone to see. Feel free to look at the +A [public dashboard](https://redash.gitlab.com/public/dashboards/l1WhHXaxrCWM5Ai9D7YDqHKehq6OU3bx5gssaiWe?org_slug=default) is available for everyone to see. Feel free to look at the slowest test files and try to improve them. -[monitored]: ../performance.md#rspec-profiling -[public dashboard]: https://redash.gitlab.com/public/dashboards/l1WhHXaxrCWM5Ai9D7YDqHKehq6OU3bx5gssaiWe?org_slug=default - ## CI setup - Rails logging to `log/test.log` is disabled by default in CI [for - performance reasons][logging]. To override this setting, provide the + performance reasons](https://jtway.co/speed-up-your-rails-test-suite-by-6-in-1-line-13fedb869ec4). To override this setting, provide the `RAILS_ENABLE_TEST_LOG` environment variable. -[logging]: https://jtway.co/speed-up-your-rails-test-suite-by-6-in-1-line-13fedb869ec4 - --- [Return to Testing documentation](index.md) |