Select Git revision
-
malthefogsporring authored
Fix an issue where search bar didn't show on online docs. This is fixed permanently by only installing the current version of mkdocs-material, so future updates do not break out code. Fix an issue where styles.css was not accessible to the website, by changing from combinatronics to jsdelivr as service for accessing the raw css file hosted on github.
malthefogsporring authoredFix an issue where search bar didn't show on online docs. This is fixed permanently by only installing the current version of mkdocs-material, so future updates do not break out code. Fix an issue where styles.css was not accessible to the website, by changing from combinatronics to jsdelivr as service for accessing the raw css file hosted on github.
Rakefile 776 B
# frozen_string_literal: true
require 'rake'
require 'rake/testtask'
require 'bundler/setup'
Rake::TestTask.new do |t|
t.libs << 'lib'
t.pattern = 'test/**/*_test.rb'
t.verbose = false
end
desc 'Run Test Kitchen integration tests'
namespace :integration do
desc 'Run integration tests with kitchen-docker'
task :docker do
require 'kitchen'
Kitchen.logger = Kitchen.default_file_logger
@loader = Kitchen::Loader::YAML.new(local_config: '.kitchen.docker.yml')
Kitchen::Config.new(loader: @loader).instances.each do |instance|
instance.test(:always)
end
end
end
task default: :test
begin
require 'kitchen/rake_tasks'
Kitchen::RakeTasks.new
rescue LoadError
puts '>>>>> Kitchen gem not loaded, omitting tasks' unless ENV['CI']
end