#!/usr/bin/env ruby
# frozen_string_literal: true

# enable local usage from cloned repo
root = File.expand_path('..', __dir__)
$LOAD_PATH << "#{root}/lib" if File.exist?("#{root}/Gemfile")

require "parallel_tests"

ParallelTests::CLI.new.run(["--type", "rspec"] + ARGV)
