File tree 3 files changed +9
-13
lines changed
3 files changed +9
-13
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,11 @@ check various syntax and style things. You can run these locally with:
52
52
bundle exec rake lint
53
53
bundle exec rake validate
54
54
55
+ It will also run some [ Rubocop] ( http://batsov.com/rubocop/ ) tests
56
+ against it. You can run those locally ahead of time with:
57
+
58
+ bundle exec rake rubocop
59
+
55
60
## Running the unit tests
56
61
57
62
The unit test suite covers most of the code, as mentioned above please
85
90
bundle exec rake acceptance
86
91
87
92
This will run the tests on an Ubuntu 12.04 virtual machine. You can also
88
- run the integration tests against Centos 6.5 with.
93
+ run the integration tests against Centos 6.6 with.
89
94
90
- BEAKER_set=centos-64 -x64 bundle exec rake acceptances
95
+ BEAKER_set=centos-66 -x64 bundle exec rake acceptances
91
96
92
97
If you don't want to have to recreate the virtual machine every time you
93
98
can use ` BEAKER_DESTROY=no ` and ` BEAKER_PROVISION=no ` . On the first run you will
Original file line number Diff line number Diff line change 1
- modulesync_config_version : ' 0.12.8 '
1
+ modulesync_config_version : ' 0.13.0 '
Original file line number Diff line number Diff line change @@ -3,16 +3,7 @@ require 'puppet_blacksmith/rake_tasks'
3
3
require 'voxpupuli/release/rake_tasks'
4
4
require 'puppet-strings/rake_tasks'
5
5
6
- if RUBY_VERSION >= '2.3.0'
7
- require 'rubocop/rake_task'
8
-
9
- RuboCop ::RakeTask . new ( :rubocop ) do |task |
10
- # These make the rubocop experience maybe slightly less terrible
11
- task . options = [ '-D' , '-S' , '-E' ]
12
- end
13
- end
14
-
15
- PuppetLint . configuration . log_format = '%{path}:%{linenumber}:%{check}:%{KIND}:%{message}'
6
+ PuppetLint . configuration . log_format = '%{path}:%{line}:%{check}:%{KIND}:%{message}'
16
7
PuppetLint . configuration . fail_on_warnings = true
17
8
PuppetLint . configuration . send ( 'relative' )
18
9
PuppetLint . configuration . send ( 'disable_140chars' )
You can’t perform that action at this time.
0 commit comments