diff options
author | Artur Trzop <arturtrzop@gmail.com> | 2019-07-17 00:31:22 +0000 |
---|---|---|
committer | Evan Read <eread@gitlab.com> | 2019-07-17 00:31:22 +0000 |
commit | e7648b04ca1d7ae231a5e80cd6b0fa295d023a9b (patch) | |
tree | 37d13765def72695aa4f31954c693044e329d310 /doc | |
parent | b55fc93be0d244f10960d04c7143adeb148fb4f4 (diff) | |
download | gitlab-ce-e7648b04ca1d7ae231a5e80cd6b0fa295d023a9b.tar.gz |
Add 3rd party parallel tools section to docs
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ci/examples/README.md | 1 | ||||
-rw-r--r-- | doc/ci/yaml/README.md | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/doc/ci/examples/README.md b/doc/ci/examples/README.md index 5a302392c54..9295dcfd4e0 100644 --- a/doc/ci/examples/README.md +++ b/doc/ci/examples/README.md @@ -37,6 +37,7 @@ The following table lists examples with step-by-step tutorials that are containe | Python on Heroku | [Test and deploy a Python application with GitLab CI/CD](test-and-deploy-python-application-to-heroku.md). | | Ruby on Heroku | [Test and deploy a Ruby application with GitLab CI/CD](test-and-deploy-ruby-application-to-heroku.md). | | Scala on Heroku | [Test and deploy a Scala application to Heroku](test-scala-application.md). | +| Parallel testing Ruby & JS | [GitLab CI parallel jobs testing for Ruby & JavaScript projects](https://docs.knapsackpro.com/2019/how-to-run-parallel-jobs-for-rspec-tests-on-gitlab-ci-pipeline-and-speed-up-ruby-javascript-testing). | ### Contributing examples diff --git a/doc/ci/yaml/README.md b/doc/ci/yaml/README.md index b1b193701c3..001f951ebb8 100644 --- a/doc/ci/yaml/README.md +++ b/doc/ci/yaml/README.md @@ -1779,6 +1779,10 @@ test: parallel: 5 ``` +TIP: **Tip:** +Parallelize tests suites across parallel jobs. +Different languages have different tools to facilitate this. + ### `trigger` **(PREMIUM)** > [Introduced](https://gitlab.com/gitlab-org/gitlab-ee/issues/8997) in [GitLab Premium](https://about.gitlab.com/pricing/) 11.8. |