├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── test.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── Rakefile ├── Readme.md ├── bin ├── parallel_cucumber ├── parallel_rspec ├── parallel_spinach └── parallel_test ├── lib ├── parallel_tests.rb └── parallel_tests │ ├── cli.rb │ ├── cucumber │ ├── failures_logger.rb │ ├── features_with_steps.rb │ ├── runner.rb │ ├── scenario_line_logger.rb │ └── scenarios.rb │ ├── gherkin │ ├── io.rb │ ├── listener.rb │ ├── runner.rb │ └── runtime_logger.rb │ ├── grouper.rb │ ├── pids.rb │ ├── railtie.rb │ ├── rspec │ ├── failures_logger.rb │ ├── logger_base.rb │ ├── runner.rb │ ├── runtime_logger.rb │ ├── summary_logger.rb │ └── verbose_logger.rb │ ├── spinach │ └── runner.rb │ ├── tasks.rb │ ├── test │ ├── runner.rb │ └── runtime_logger.rb │ └── version.rb ├── parallel_tests.gemspec └── spec ├── fixtures └── rails72 │ ├── .gitattributes │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ ├── Rakefile │ ├── app │ ├── assets │ │ ├── config │ │ │ └── manifest.js │ │ ├── images │ │ │ └── .keep │ │ └── stylesheets │ │ │ └── application.css │ ├── channels │ │ └── application_cable │ │ │ ├── channel.rb │ │ │ └── connection.rb │ ├── controllers │ │ ├── application_controller.rb │ │ └── concerns │ │ │ └── .keep │ ├── helpers │ │ └── application_helper.rb │ ├── javascript │ │ ├── application.js │ │ └── controllers │ │ │ ├── application.js │ │ │ ├── hello_controller.js │ │ │ └── index.js │ ├── jobs │ │ └── application_job.rb │ ├── mailers │ │ └── application_mailer.rb │ ├── models │ │ ├── application_record.rb │ │ ├── concerns │ │ │ └── .keep │ │ └── user.rb │ └── views │ │ └── layouts │ │ ├── application.html.erb │ │ ├── mailer.html.erb │ │ └── mailer.text.erb │ ├── bin │ ├── bundle │ ├── importmap │ ├── rails │ ├── rake │ └── setup │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── cable.yml │ ├── credentials.yml.enc │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── importmap.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── content_security_policy.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ └── permissions_policy.rb │ ├── locales │ │ └── en.yml │ ├── puma.rb │ ├── routes.rb │ └── storage.yml │ ├── db │ ├── migrate │ │ └── 20220322153446_create_users.rb │ ├── schema.rb │ └── seeds.rb │ ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ └── .keep │ ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ ├── favicon.ico │ └── robots.txt │ ├── storage │ └── .keep │ ├── test │ ├── application_system_test_case.rb │ ├── channels │ │ └── application_cable │ │ │ └── connection_test.rb │ ├── controllers │ │ └── .keep │ ├── fixtures │ │ ├── files │ │ │ └── .keep │ │ └── users.yml │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ └── user_test.rb │ ├── system │ │ └── .keep │ └── test_helper.rb │ └── vendor │ ├── .keep │ └── javascript │ └── .keep ├── integration_spec.rb ├── parallel_tests ├── cli_spec.rb ├── cucumber │ ├── failure_logger_spec.rb │ ├── runner_spec.rb │ └── scenarios_spec.rb ├── gherkin │ ├── listener_spec.rb │ └── runner_behaviour.rb ├── grouper_spec.rb ├── pids_spec.rb ├── rspec │ ├── failures_logger_spec.rb │ ├── logger_base_spec.rb │ ├── runner_spec.rb │ ├── runtime_logger_spec.rb │ ├── summary_logger_spec.rb │ └── verbose_logger_spec.rb ├── spinach │ └── runner_spec.rb ├── tasks_spec.rb └── test │ ├── runner_spec.rb │ └── runtime_logger_spec.rb ├── parallel_tests_spec.rb ├── rails_spec.rb └── spec_helper.rb /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --order random 3 | --exclude-pattern spec/fixtures/**/* 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/Rakefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/Readme.md -------------------------------------------------------------------------------- /bin/parallel_cucumber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/bin/parallel_cucumber -------------------------------------------------------------------------------- /bin/parallel_rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/bin/parallel_rspec -------------------------------------------------------------------------------- /bin/parallel_spinach: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/bin/parallel_spinach -------------------------------------------------------------------------------- /bin/parallel_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/bin/parallel_test -------------------------------------------------------------------------------- /lib/parallel_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/lib/parallel_tests.rb -------------------------------------------------------------------------------- /lib/parallel_tests/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/lib/parallel_tests/cli.rb -------------------------------------------------------------------------------- /lib/parallel_tests/cucumber/failures_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/lib/parallel_tests/cucumber/failures_logger.rb -------------------------------------------------------------------------------- /lib/parallel_tests/cucumber/features_with_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/lib/parallel_tests/cucumber/features_with_steps.rb -------------------------------------------------------------------------------- /lib/parallel_tests/cucumber/runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/lib/parallel_tests/cucumber/runner.rb -------------------------------------------------------------------------------- /lib/parallel_tests/cucumber/scenario_line_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/lib/parallel_tests/cucumber/scenario_line_logger.rb -------------------------------------------------------------------------------- /lib/parallel_tests/cucumber/scenarios.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/lib/parallel_tests/cucumber/scenarios.rb -------------------------------------------------------------------------------- /lib/parallel_tests/gherkin/io.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/lib/parallel_tests/gherkin/io.rb -------------------------------------------------------------------------------- /lib/parallel_tests/gherkin/listener.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/lib/parallel_tests/gherkin/listener.rb -------------------------------------------------------------------------------- /lib/parallel_tests/gherkin/runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/lib/parallel_tests/gherkin/runner.rb -------------------------------------------------------------------------------- /lib/parallel_tests/gherkin/runtime_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/lib/parallel_tests/gherkin/runtime_logger.rb -------------------------------------------------------------------------------- /lib/parallel_tests/grouper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/lib/parallel_tests/grouper.rb -------------------------------------------------------------------------------- /lib/parallel_tests/pids.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/lib/parallel_tests/pids.rb -------------------------------------------------------------------------------- /lib/parallel_tests/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/lib/parallel_tests/railtie.rb -------------------------------------------------------------------------------- /lib/parallel_tests/rspec/failures_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/lib/parallel_tests/rspec/failures_logger.rb -------------------------------------------------------------------------------- /lib/parallel_tests/rspec/logger_base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/lib/parallel_tests/rspec/logger_base.rb -------------------------------------------------------------------------------- /lib/parallel_tests/rspec/runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/lib/parallel_tests/rspec/runner.rb -------------------------------------------------------------------------------- /lib/parallel_tests/rspec/runtime_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/lib/parallel_tests/rspec/runtime_logger.rb -------------------------------------------------------------------------------- /lib/parallel_tests/rspec/summary_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/lib/parallel_tests/rspec/summary_logger.rb -------------------------------------------------------------------------------- /lib/parallel_tests/rspec/verbose_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/lib/parallel_tests/rspec/verbose_logger.rb -------------------------------------------------------------------------------- /lib/parallel_tests/spinach/runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/lib/parallel_tests/spinach/runner.rb -------------------------------------------------------------------------------- /lib/parallel_tests/tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/lib/parallel_tests/tasks.rb -------------------------------------------------------------------------------- /lib/parallel_tests/test/runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/lib/parallel_tests/test/runner.rb -------------------------------------------------------------------------------- /lib/parallel_tests/test/runtime_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/lib/parallel_tests/test/runtime_logger.rb -------------------------------------------------------------------------------- /lib/parallel_tests/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | module ParallelTests 3 | VERSION = '5.5.0' 4 | end 5 | -------------------------------------------------------------------------------- /parallel_tests.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/parallel_tests.gemspec -------------------------------------------------------------------------------- /spec/fixtures/rails72/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/.gitattributes -------------------------------------------------------------------------------- /spec/fixtures/rails72/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/.gitignore -------------------------------------------------------------------------------- /spec/fixtures/rails72/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/Gemfile -------------------------------------------------------------------------------- /spec/fixtures/rails72/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/Gemfile.lock -------------------------------------------------------------------------------- /spec/fixtures/rails72/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/README.md -------------------------------------------------------------------------------- /spec/fixtures/rails72/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/Rakefile -------------------------------------------------------------------------------- /spec/fixtures/rails72/app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/app/assets/config/manifest.js -------------------------------------------------------------------------------- /spec/fixtures/rails72/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/rails72/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /spec/fixtures/rails72/app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /spec/fixtures/rails72/app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /spec/fixtures/rails72/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /spec/fixtures/rails72/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/rails72/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/fixtures/rails72/app/javascript/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/app/javascript/application.js -------------------------------------------------------------------------------- /spec/fixtures/rails72/app/javascript/controllers/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/app/javascript/controllers/application.js -------------------------------------------------------------------------------- /spec/fixtures/rails72/app/javascript/controllers/hello_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/app/javascript/controllers/hello_controller.js -------------------------------------------------------------------------------- /spec/fixtures/rails72/app/javascript/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/app/javascript/controllers/index.js -------------------------------------------------------------------------------- /spec/fixtures/rails72/app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/app/jobs/application_job.rb -------------------------------------------------------------------------------- /spec/fixtures/rails72/app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /spec/fixtures/rails72/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/app/models/application_record.rb -------------------------------------------------------------------------------- /spec/fixtures/rails72/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/rails72/app/models/user.rb: -------------------------------------------------------------------------------- 1 | class User < ApplicationRecord 2 | end 3 | -------------------------------------------------------------------------------- /spec/fixtures/rails72/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /spec/fixtures/rails72/app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /spec/fixtures/rails72/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /spec/fixtures/rails72/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/bin/bundle -------------------------------------------------------------------------------- /spec/fixtures/rails72/bin/importmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/bin/importmap -------------------------------------------------------------------------------- /spec/fixtures/rails72/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/bin/rails -------------------------------------------------------------------------------- /spec/fixtures/rails72/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/bin/rake -------------------------------------------------------------------------------- /spec/fixtures/rails72/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/bin/setup -------------------------------------------------------------------------------- /spec/fixtures/rails72/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/config.ru -------------------------------------------------------------------------------- /spec/fixtures/rails72/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/config/application.rb -------------------------------------------------------------------------------- /spec/fixtures/rails72/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/config/boot.rb -------------------------------------------------------------------------------- /spec/fixtures/rails72/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/config/cable.yml -------------------------------------------------------------------------------- /spec/fixtures/rails72/config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/config/credentials.yml.enc -------------------------------------------------------------------------------- /spec/fixtures/rails72/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/config/database.yml -------------------------------------------------------------------------------- /spec/fixtures/rails72/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/config/environment.rb -------------------------------------------------------------------------------- /spec/fixtures/rails72/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/config/environments/development.rb -------------------------------------------------------------------------------- /spec/fixtures/rails72/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/config/environments/production.rb -------------------------------------------------------------------------------- /spec/fixtures/rails72/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/config/environments/test.rb -------------------------------------------------------------------------------- /spec/fixtures/rails72/config/importmap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/config/importmap.rb -------------------------------------------------------------------------------- /spec/fixtures/rails72/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/config/initializers/assets.rb -------------------------------------------------------------------------------- /spec/fixtures/rails72/config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /spec/fixtures/rails72/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /spec/fixtures/rails72/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/config/initializers/inflections.rb -------------------------------------------------------------------------------- /spec/fixtures/rails72/config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /spec/fixtures/rails72/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/config/locales/en.yml -------------------------------------------------------------------------------- /spec/fixtures/rails72/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/config/puma.rb -------------------------------------------------------------------------------- /spec/fixtures/rails72/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/config/routes.rb -------------------------------------------------------------------------------- /spec/fixtures/rails72/config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/config/storage.yml -------------------------------------------------------------------------------- /spec/fixtures/rails72/db/migrate/20220322153446_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/db/migrate/20220322153446_create_users.rb -------------------------------------------------------------------------------- /spec/fixtures/rails72/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/db/schema.rb -------------------------------------------------------------------------------- /spec/fixtures/rails72/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/db/seeds.rb -------------------------------------------------------------------------------- /spec/fixtures/rails72/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/rails72/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/rails72/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/public/404.html -------------------------------------------------------------------------------- /spec/fixtures/rails72/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/public/422.html -------------------------------------------------------------------------------- /spec/fixtures/rails72/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/public/500.html -------------------------------------------------------------------------------- /spec/fixtures/rails72/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/rails72/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/rails72/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/rails72/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/public/robots.txt -------------------------------------------------------------------------------- /spec/fixtures/rails72/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/rails72/test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/test/application_system_test_case.rb -------------------------------------------------------------------------------- /spec/fixtures/rails72/test/channels/application_cable/connection_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/test/channels/application_cable/connection_test.rb -------------------------------------------------------------------------------- /spec/fixtures/rails72/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/rails72/test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/rails72/test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/test/fixtures/users.yml -------------------------------------------------------------------------------- /spec/fixtures/rails72/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/rails72/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/rails72/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/rails72/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/rails72/test/models/user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/test/models/user_test.rb -------------------------------------------------------------------------------- /spec/fixtures/rails72/test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/rails72/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/fixtures/rails72/test/test_helper.rb -------------------------------------------------------------------------------- /spec/fixtures/rails72/vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/rails72/vendor/javascript/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/integration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/integration_spec.rb -------------------------------------------------------------------------------- /spec/parallel_tests/cli_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/parallel_tests/cli_spec.rb -------------------------------------------------------------------------------- /spec/parallel_tests/cucumber/failure_logger_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/parallel_tests/cucumber/failure_logger_spec.rb -------------------------------------------------------------------------------- /spec/parallel_tests/cucumber/runner_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/parallel_tests/cucumber/runner_spec.rb -------------------------------------------------------------------------------- /spec/parallel_tests/cucumber/scenarios_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/parallel_tests/cucumber/scenarios_spec.rb -------------------------------------------------------------------------------- /spec/parallel_tests/gherkin/listener_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/parallel_tests/gherkin/listener_spec.rb -------------------------------------------------------------------------------- /spec/parallel_tests/gherkin/runner_behaviour.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/parallel_tests/gherkin/runner_behaviour.rb -------------------------------------------------------------------------------- /spec/parallel_tests/grouper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/parallel_tests/grouper_spec.rb -------------------------------------------------------------------------------- /spec/parallel_tests/pids_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/parallel_tests/pids_spec.rb -------------------------------------------------------------------------------- /spec/parallel_tests/rspec/failures_logger_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/parallel_tests/rspec/failures_logger_spec.rb -------------------------------------------------------------------------------- /spec/parallel_tests/rspec/logger_base_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/parallel_tests/rspec/logger_base_spec.rb -------------------------------------------------------------------------------- /spec/parallel_tests/rspec/runner_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/parallel_tests/rspec/runner_spec.rb -------------------------------------------------------------------------------- /spec/parallel_tests/rspec/runtime_logger_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/parallel_tests/rspec/runtime_logger_spec.rb -------------------------------------------------------------------------------- /spec/parallel_tests/rspec/summary_logger_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/parallel_tests/rspec/summary_logger_spec.rb -------------------------------------------------------------------------------- /spec/parallel_tests/rspec/verbose_logger_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/parallel_tests/rspec/verbose_logger_spec.rb -------------------------------------------------------------------------------- /spec/parallel_tests/spinach/runner_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/parallel_tests/spinach/runner_spec.rb -------------------------------------------------------------------------------- /spec/parallel_tests/tasks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/parallel_tests/tasks_spec.rb -------------------------------------------------------------------------------- /spec/parallel_tests/test/runner_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/parallel_tests/test/runner_spec.rb -------------------------------------------------------------------------------- /spec/parallel_tests/test/runtime_logger_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/parallel_tests/test/runtime_logger_spec.rb -------------------------------------------------------------------------------- /spec/parallel_tests_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/parallel_tests_spec.rb -------------------------------------------------------------------------------- /spec/rails_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/rails_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grosser/parallel_tests/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------