Guard::Codeception is an extension to the guard gem for the codeception testing framework
$ gem install guard-codeception
Or add this line to your application's Gemfile:
gem 'guard-codeception'
And then execute:
$ bundle
The Guardfile can be generated from $ guard init codeception
. By default Guard::Codeception will listen to any changes to PHP files only but you can alter the regex to your needs.
guard 'codeception' do
watch(%r{^.*\.php$})
end
The following options can be passed to Guard::Codeception
# run only specified suites default: [:acceptance, :functional, :unit]
:suites => [:acceptence, :custom_suite]
# run specific test group default: []
:groups => [:foo, :bar]
# enable codeception debug mode default: false
:debug => false
# run tests when guard starts default: false
:test_on_start => false
# path to codecept default 'codecept'
# if codecept is not avaliable via the PATH you can
# define the path to codecept here. ie: installing codeception
# via composer would be :codecept => 'vendor/bin/codecept'
:codecept => '/path/to/codecept'
# extra cli you wish to pass to codeceeption
# ie: config, json or xml output
:cli => false
$ guard
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request