Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Parallel_tests | 3,256 | 2,870 | 126 | a month ago | 242 | May 12, 2023 | 123 | Ruby | ||
Ruby: 2 CPUs = 2x Testing Speed for RSpec, Test::Unit and Cucumber | ||||||||||
Spork | 1,412 | 14,337 | 248 | 5 years ago | 51 | September 14, 2013 | 114 | mit | Ruby | |
A DRb server for testing frameworks (RSpec / Cucumber currently) that forks before each run to ensure a clean testing state. | ||||||||||
Email Spec | 1,180 | 9,060 | 51 | 3 months ago | 29 | April 03, 2018 | 40 | mit | Ruby | |
Collection of RSpec/MiniTest matchers and Cucumber steps for testing email in a ruby app using ActionMailer or Pony | ||||||||||
Fabrication | 1,018 | 3,612 | 105 | 3 years ago | 114 | July 25, 2022 | 6 | mit | Ruby | |
This project has moved to GitLab! Please check there for the latest updates. | ||||||||||
Turnip | 959 | 445 | 54 | a year ago | 31 | May 16, 2021 | 9 | Ruby | ||
Gherkin extension for RSpec | ||||||||||
Aruba | 946 | 5,307 | 1,457 | a month ago | 104 | May 20, 2022 | 50 | mit | Ruby | |
Test command-line applications with Cucumber-Ruby, RSpec or Minitest. | ||||||||||
Json_spec | 907 | 1,225 | 102 | 4 years ago | 18 | May 03, 2017 | 20 | mit | Ruby | |
Easily handle JSON in RSpec and Cucumber | ||||||||||
Sublime Text 2 Ruby Tests | 739 | 6 years ago | 57 | Python | ||||||
Sublime Text 2 plugin for running ruby tests! (Unit, RSpec, Cucumber) | ||||||||||
Knapsack | 496 | 1,356 | 3 | 4 months ago | 59 | August 05, 2021 | 10 | mit | Ruby | |
Knapsack splits tests evenly across parallel CI nodes to run fast CI build and save you time. | ||||||||||
Rails3 Devise Rspec Cucumber | 455 | 4 years ago | 8 | Ruby | ||||||
An example Rails 3.2 app with Devise and RSpec and Cucumber. |
Speedup Test::Unit + RSpec + Cucumber + Spinach by running parallel on multiple CPU cores.
ParallelTests splits tests into even groups (by number of lines or runtime) and runs each group in a single process with its own database.
RailsCasts episode #413 Fast Tests
Gemfile
:
gem 'parallel_tests', group: [:development, :test]
config/database.yml
ParallelTests uses 1 database per test-process.
Process number | 1 | 2 | 3 |
ENV['TEST_ENV_NUMBER'] | '' | '2' | '3' |
test:
database: yourproject_test<%= ENV['TEST_ENV_NUMBER'] %>
rake parallel:create
rake parallel:prepare
rake parallel:migrate
rake parallel:setup
rake parallel:drop
rake parallel:test # Test::Unit
rake parallel:spec # RSpec
rake parallel:features # Cucumber
rake parallel:features-spinach # Spinach
rake parallel:test[1] --> force 1 CPU --> 86 seconds
rake parallel:test --> got 2 CPUs? --> 47 seconds
rake parallel:test --> got 4 CPUs? --> 26 seconds
...
Test by pattern with Regex (e.g. use one integration server per subfolder / see if you broke any 'user'-related tests)
rake parallel:test[^test/unit] # every test file in test/unit folder
rake parallel:test[user] # run users_controller + user_helper + user tests
rake parallel:test['user|product'] # run user and product related tests
rake parallel:spec['spec\/(?!features)'] # run RSpec tests except the tests in spec/features
2 processes for 210 specs, ~ 105 specs per process
... test output ...
843 examples, 0 failures, 1 pending
Took 29.925333 seconds
RAILS_ENV=test parallel_test -e "rake my:custom:task"
# or
rake parallel:rake[my:custom:task]
# limited parallelism
rake parallel:rake[my:custom:task,2]
require "parallel_tests"
# preparation:
# affected by race-condition: first process may boot slower than the second
# either sleep a bit or use a lock for example File.lock
ParallelTests.first_process? ? do_something : sleep(1)
# cleanup:
# last_process? does NOT mean last finished process, just last started
ParallelTests.last_process? ? do_something : sleep(1)
at_exit do
if ParallelTests.first_process?
ParallelTests.wait_for_other_processes_to_finish
undo_something
end
end
Test groups are often not balanced and will run for different times, making everything wait for the slowest group. Use these loggers to record test runtime and then use the recorded runtime to balance test groups more evenly.
Rspec: Add to your .rspec_parallel
(or .rspec
) :
--format progress
--format ParallelTests::RSpec::RuntimeLogger --out tmp/parallel_runtime_rspec.log
To use a custom logfile location (default: tmp/parallel_runtime_rspec.log
), use the CLI: parallel_test spec -t rspec --runtime-log my.log
Add to your test_helper.rb
:
require 'parallel_tests/test/runtime_logger' if ENV['RECORD_RUNTIME']
results will be logged to tmp/parallel_runtime_test.log when RECORD_RUNTIME
is set,
so it is not always required or overwritten.
Log the test output without the different processes overwriting each other.
Add the following to your .rspec_parallel
(or .rspec
) :
--format progress
--format ParallelTests::RSpec::SummaryLogger --out tmp/spec_summary.log
Produce pastable command-line snippets for each failed example. For example:
rspec /path/to/my_spec.rb:123 # should do something
Add to .rspec_parallel
or use as CLI flag:
--format progress
--format ParallelTests::RSpec::FailuresLogger --out tmp/failing_specs.log
(Not needed to retry failures, for that pass --only-failures to rspec)
Log failed cucumber scenarios to the specified file. The filename can be passed to cucumber, prefixed with '@' to rerun failures.
Usage:
cucumber --format ParallelTests::Cucumber::FailuresLogger --out tmp/cucumber_failures.log
Or add the formatter to the parallel:
profile of your cucumber.yml
:
parallel: --format progress --format ParallelTests::Cucumber::FailuresLogger --out tmp/cucumber_failures.log
Note if your cucumber.yml
default profile uses <%= std_opts %>
you may need to insert this as follows parallel: <%= std_opts %> --format progress...
To rerun failures:
cucumber @tmp/cucumber_failures.log
gem install parallel_tests
# go to your project dir
parallel_test
parallel_rspec
parallel_cucumber
parallel_spinach
use ENV['TEST_ENV_NUMBER']
inside your tests to select separate db/memcache/etc. (docker compose: expose it)
Only run a subset of files / folders:
parallel_test test/bar test/baz/foo_text.rb
Pass test-options and files via --
:
parallel_rspec -- -t acceptance -f progress -- spec/foo_spec.rb spec/acceptance
Pass in test options, by using the -o flag (wrap everything in quotes):
parallel_cucumber -n 2 -o '-p foo_profile --tags @only_this_tag or @only_that_tag --format summary'
Options are:
-n [PROCESSES] How many processes to use, default: available CPUs
-p, --pattern [PATTERN] run tests matching this regex pattern
--exclude-pattern [PATTERN] exclude tests matching this regex pattern
--group-by [TYPE] group tests by:
found - order of finding files
steps - number of cucumber/spinach steps
scenarios - individual cucumber scenarios
filesize - by size of the file
runtime - info from runtime log
default - runtime when runtime log is filled otherwise filesize
-m, --multiply-processes [FLOAT] use given number as a multiplier of processes to run
-s, --single [PATTERN] Run all matching files in the same process
-i, --isolate Do not run any other tests in the group used by --single(-s)
--isolate-n [PROCESSES] Use 'isolate' singles with number of processes, default: 1.
--highest-exit-status Exit with the highest exit status provided by test run(s)
--specify-groups [SPECS] Use 'specify-groups' if you want to specify multiple specs running in multiple
processes in a specific formation. Commas indicate specs in the same process,
pipes indicate specs in a new process. Cannot use with --single, --isolate, or
--isolate-n. Ex.
$ parallel_tests -n 3 . --specify-groups '1_spec.rb,2_spec.rb|3_spec.rb'
Process 1 will contain 1_spec.rb and 2_spec.rb
Process 2 will contain 3_spec.rb
Process 3 will contain all other specs
--only-group INT[,INT] Only run the given group numbers. Note that this will force the 'filesize'
grouping strategy (even when the runtime log is present) unless you explicitly
set it otherwise via the '-group-by' flag.
-e, --exec [COMMAND] execute this code parallel and with ENV['TEST_ENV_NUMBER']
-o, --test-options '[OPTIONS]' execute test commands with those options
-t, --type [TYPE] test(default) / rspec / cucumber / spinach
--suffix [PATTERN] override built in test file pattern (should match suffix):
'_spec.rb$' - matches rspec files
'_(test|spec).rb$' - matches test or spec files
--serialize-stdout Serialize stdout output, nothing will be written until everything is done
--prefix-output-with-test-env-number
Prefixes test env number to the output when not using --serialize-stdout
--combine-stderr Combine stderr into stdout, useful in conjunction with --serialize-stdout
--non-parallel execute same commands but do not in parallel, needs --exec
--no-symlinks Do not traverse symbolic links to find test files
--ignore-tags [PATTERN] When counting steps ignore scenarios with tags that match this pattern
--nice execute test commands with low priority.
--runtime-log [PATH] Location of previously recorded test runtimes
--allowed-missing [INT] Allowed percentage of missing runtimes (default = 50)
--unknown-runtime [FLOAT] Use given number as unknown runtime (otherwise use average time)
--first-is-1 Use "1" as TEST_ENV_NUMBER to not reuse the default test environment
--fail-fast Stop all groups when one group fails (best used with --test-options '--fail-fast' if supported
--verbose Print debug output
--verbose-command Displays the command that will be executed by each process and when there are failures displays the command executed by each process that failed
--quiet Print only tests output
-v, --version Show Version
-h, --help Show this.
You can run any kind of code in parallel with -e / --exec
parallel_test -n 5 -e 'ruby -e "puts %[hello from process #{ENV[:TEST_ENV_NUMBER.to_s].inspect}]"'
hello from process "2"
hello from process ""
hello from process "3"
hello from process "5"
hello from process "4"
1 Process | 2 Processes | 4 Processes | |
RSpec spec-suite | 18s | 14s | 10s |
Rails-ActionPack | 88s | 53s | 44s |
.rspec_parallel
to use different options, e.g. no --drb
--loadby
from .rspec
parallel_tests
works at the file-level and intends to stay that way)parallel: foo
profile to your config/cucumber.yml
and it will be used to run parallel testsrake "parallel:prepare[3]"
config.cache_store = ..., namespace: "test_#{ENV['TEST_ENV_NUMBER']}"
--verbose
and cleanser
export PARALLEL_TEST_PROCESSORS=13
to override default processor countalias prspec='parallel_rspec -m 2 --'
Gemfile
to get parallel_tests
working with Spring.--first-is-1
will make the first environment be 1
, so you can test while running your full suite.export PARALLEL_TEST_FIRST_IS_1=true
will provide the same resultparallel_tests
can run on distributed servers such as Travis and GitLab-CI. Also shows you how to use parallel_tests without adding TEST_ENV_NUMBER
-backendsContribute your own gotchas to the Wiki or even better open a PR :)
inspired by pivotal labs
Michael Grosser
[email protected]
License: MIT