File tree 1 file changed +7
-1
lines changed
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 12
12
# Readable test descriptions
13
13
c . formatter = :documentation
14
14
15
+ # detect the situation where PUP-5016 is triggered and skip the idempotency tests in that case
16
+ # also note how fact('puppetversion') is not available because of PUP-4359
17
+ if fact ( 'osfamily' ) == 'Debian' && fact ( 'operatingsystemmajrelease' ) == '8' && shell ( 'puppet --version' ) . stdout =~ /^4\. 2/
18
+ c . filter_run_excluding :skip_pup_5016 => true
19
+ end
20
+
15
21
# Configure all nodes in nodeset
16
22
c . before :suite do
17
23
# Install module and dependencies
53
59
apply_manifest ( pp , :catch_failures => true )
54
60
end
55
61
56
- it 'should apply a second time without changes' do
62
+ it 'should apply a second time without changes' , :skip_pup_5016 do
57
63
apply_manifest ( pp , :catch_changes => true )
58
64
end
59
65
end
You can’t perform that action at this time.
0 commit comments