summaryrefslogtreecommitdiff
path: root/spec/fast_spec_helper.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@13-6-stable-eev13.6.0-rc42GitLab Bot2020-11-191-0/+7
|
* Add latest changes from gitlab-org/gitlab@13-1-stable-eeGitLab Bot2020-06-181-0/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-191-5/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-181-2/+5
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-10-081-2/+0
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-10-071-0/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-10-031-0/+2
|
* Add methods for injecting EE modulesYorick Peterse2019-07-301-0/+1
| | | | | | | | | | | This adds the methods prepend_if_ee, extend_if_ee, and include_if_ee that can be used to inject EE specific modules in EE. These methods are exposed as an initializer that is loaded as soon as possible. For tests that use fast_spec_helper.rb we must load this initializer manually, as the Rails environment is not loaded. This is not the most pretty setup, but unfortunately there is no alternative that we can use.
* Backport gitlab.yml.example from EEconfig-yaml-differencesYorick Peterse2019-06-201-0/+1
| | | | | | | | To make this happen, we need to conditionally add the group_saml strategy when running tests, but only on EE. This requires some changes to Gitlab.ee? so that it can be used before/without loading the Rails environment. We also have to change how we require a few files, so this can run outside of Rails.
* Use Nokogiri as the ActiveSupport XML backendsh-use-nokogiri-xml-backendStan Hu2018-11-161-0/+1
| | | | | | | | This significantly improves performance and reduces memory consumption when parsing XML files. On a test with 124 JUnit files from a CE build, there was about a 4x reduction in processing time. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/54068
* Allow CE do nothing if route doesn't exist7864-ee-routesLin Jen-Shin2018-10-261-0/+1
|
* Improve fast specs helper to autoload the libraryGrzegorz Bizon2018-05-111-9/+3
|
* Do not preload settingsKamil Trzciński2018-04-241-1/+2
|
* Get rid of config/initializers/2_app.rb and define Gitlab in lib/gitlab.rbRémy Coutable2018-04-231-5/+1
| | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* Address latest feedbackRémy Coutable2018-04-231-5/+3
| | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* Move Settings to its own file, isolate it from Rails and introduce Gitlab.rootRémy Coutable2018-04-231-22/+5
| | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* Introduce spec/fast_spec_helper.rb to run spec files that don't rely on the ↵Rémy Coutable2018-04-231-0/+38
whole Rails env Signed-off-by: Rémy Coutable <remy@rymai.me>