inferno_core 0.4.33 → 0.4.35
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/inferno/apps/cli/new.rb +1 -1
- data/lib/inferno/apps/cli/templates/lib/%library_name%.rb.tt +1 -1
- data/lib/inferno/config/boot/validator.rb +2 -0
- data/lib/inferno/dsl/fhir_client_builder.rb +1 -1
- data/lib/inferno/public/bundle.js +19 -19
- data/lib/inferno/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 30182f3e68640375fa7109325e45456b1a51017df274fa367e209d4fdef9a7de
|
4
|
+
data.tar.gz: 5c2a06c4171424120d8b0d760c8b295c8410ec2ba0b47473a5a14ae8c894faf6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 62d86aba85c02d2a40bf46e01dc6b31d6b2d6bf91af05bf75f0c9d183dcdffbe854b196a5c21fd7512b59db19e06429dcd42a173e51c84ac8b3a537940a2e930
|
7
|
+
data.tar.gz: e13f07fa322182878878fabe04b293f33596733dc926381fcbfbf589fda5cef517aaabe2ab4107876f67188d554aec241de5354ce45f3d738f5106329f73721e
|
data/lib/inferno/apps/cli/new.rb
CHANGED
@@ -4,7 +4,7 @@ module <%= module_name %>
|
|
4
4
|
class Suite < Inferno::TestSuite
|
5
5
|
id :<%= test_suite_id %>
|
6
6
|
title '<%= title_name %> Test Suite'
|
7
|
-
description '
|
7
|
+
description '<%= human_name %> test suite.'
|
8
8
|
|
9
9
|
# These inputs will be available to all tests in this suite
|
10
10
|
input :url,
|
@@ -6,6 +6,8 @@ Inferno::Application.boot(:validator) do
|
|
6
6
|
# so skipping it on workers will start it only once from the "web" process
|
7
7
|
next if Sidekiq.server?
|
8
8
|
|
9
|
+
next if ENV['APP_ENV'] == 'test'
|
10
|
+
|
9
11
|
Inferno::Repositories::TestSuites.new.all.each do |suite|
|
10
12
|
suite.fhir_validators.each do |name, validators|
|
11
13
|
validators.each_with_index do |validator, index|
|