Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
example-magento2-project-testing
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MET Public
example-magento2-project-testing
Merge requests
!1
Test feature
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Test feature
test-feature
into
master
Overview
0
Commits
2
Pipelines
1
Changes
2
Open
Vadim Justus
requested to merge
test-feature
into
master
2 years ago
Overview
0
Commits
2
Pipelines
1
Changes
2
Expand
0
0
Merge request reports
Compare
master
master (HEAD)
and
latest version
latest version
89dda2ac
2 commits,
2 years ago
2 files
+
25
−
84
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
.gitlab-ci.yml
+
25
−
15
Options
@@ -9,7 +9,9 @@ stages:
static-tests
:
stage
:
tests
tags
:
-
testing
-
php81
-
mysql80
-
es7
variables
:
EXECUTOR_SUITE
:
project-static
FILTER_NAMESPACES
:
Met
@@ -27,7 +29,9 @@ static-tests:
unit-tests
:
stage
:
tests
tags
:
-
testing
-
php81
-
mysql80
-
es7
variables
:
EXECUTOR_SUITE
:
project-unit
before_script
:
@@ -43,7 +47,9 @@ unit-tests:
integration-tests
:
stage
:
tests
tags
:
-
testing
-
php81
-
mysql80
-
es7
variables
:
EXECUTOR_SUITE
:
project-integration
USE_SMILE_ELASTICSUITE
:
1
@@ -60,7 +66,9 @@ integration-tests:
api-functional-tests
:
stage
:
tests
tags
:
-
testing
-
php81
-
mysql80
-
es7
variables
:
EXECUTOR_SUITE
:
project-api
before_script
:
@@ -73,14 +81,16 @@ api-functional-tests:
-
merge_requests
# run security tests on merge requests
security-tests
:
stage
:
tests
tags
:
-
testing
script
:
-
FORCE_COLOR=1 snyk monitor --all-projects || exit $?
-
FORCE_COLOR=1 snyk test --all-projects || exit $?
only
:
-
merge_requests
allow_failure
:
exit_codes
:
1
#security-tests:
# stage: tests
# tags:
# - php81
# - mysql80
# - es7
# script:
# - FORCE_COLOR=1 snyk monitor --all-projects || exit $?
# - FORCE_COLOR=1 snyk test --all-projects || exit $?
# only:
# - merge_requests
# allow_failure:
# exit_codes: 1
Loading