We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0387c46 commit 6aa78d7Copy full SHA for 6aa78d7
spec/integration/resolving_cherry_pick_conflict_spec.rb
@@ -39,15 +39,18 @@
39
end
40
41
it 'exits with a non-zero status' do
42
+ skip 'Skipping flakey test on AppVeyor Windows builds' if ENV['APPVEYOR']
43
subject.status.should_not == 0
44
45
46
it 'does not remove the CHERRY_PICK_HEAD file' do
47
48
subject
49
Dir['.git/*'].should include '.git/CHERRY_PICK_HEAD'
50
51
52
it 'keeps the commit message from the cherry-picked commit' do
53
54
55
File.read(File.join('.git', 'MERGE_MSG')).should include 'Add Branch 2 addition'
56
0 commit comments