We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb31c4a commit 1e6194aCopy full SHA for 1e6194a
spec/features/cli_spec.rb
@@ -3,7 +3,7 @@
3
require 'fileutils'
4
require 'English'
5
6
-RSpec.describe 'the CLI' do
+RSpec.describe 'the CLI', skip_windows: true do
7
CLI_SPEC_PACT_FILE_PATH = './tmp/foo-bar.json'.freeze
8
9
let(:json) { File.read('spec/fixtures/message-v1-format.json') }
spec/spec_helper.rb
@@ -5,7 +5,9 @@
config.example_status_persistence_file_path = ".rspec_status"
config.disable_monkey_patching!
+ is_windows = Gem.win_platform?
10
+ config.filter_run_excluding :skip_windows => is_windows
11
config.expect_with :rspec do |c|
12
c.syntax = :expect
13
end
0 commit comments