Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-04-30 12:11:58 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-04-30 12:11:58 +0300
commitef9cb5bf1be79746f78f9f36dc7cda2931ea0f2c (patch)
tree8594b7ce46d73647315aed3722840cd2e9b04a3a /tests.yml
parent2ea3ed2ee787005496935fd07e05ee4e6aefe3d1 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'tests.yml')
-rw-r--r--tests.yml15
1 files changed, 10 insertions, 5 deletions
diff --git a/tests.yml b/tests.yml
index f6908a03a8b..26433e5c4fa 100644
--- a/tests.yml
+++ b/tests.yml
@@ -1,8 +1,9 @@
mapping:
- # EE code should map to respective spec
+ # EE app should map to respective spec
- source: ee/app/(.+)\.rb
test: ee/spec/%s_spec.rb
- # FOSS code should map to respective spec
+
+ # FOSS app should map to respective spec
- source: app/(.+)\.rb
test: spec/%s_spec.rb
@@ -19,6 +20,10 @@ mapping:
- source: ee/lib/(.+)\.rb
test: ee/spec/lib/%s_spec.rb
+ # FOSS lib should map to respective spec
+ - source: lib/(.+)\.rb
+ test: spec/lib/%s_spec.rb
+
# See https://gitlab.com/gitlab-org/gitlab/-/issues/368628
- source: lib/gitlab/usage_data_counters/(.+)\.rb
test: spec/lib/gitlab/usage_data_spec.rb
@@ -31,9 +36,9 @@ mapping:
- source: ee/lib/gitlab/ci/config/(.+)\.rb
test: ee/spec/lib/gitlab/ci/yaml_processor_spec.rb
- # FOSS lib & tooling should map to respective spec
- - source: (tooling/)?lib/(.+)\.rb
- test: spec/%slib/%s_spec.rb
+ # FOSS tooling should map to respective spec
+ - source: tooling/(.+)\.rb
+ test: spec/tooling/%s_spec.rb
# Initializers should map to respective spec
- source: config/initializers/(.+)\.rb