From e5d0bd0e0ddce902d75c0b487a1c0af2a784d954 Mon Sep 17 00:00:00 2001 From: Benoit Daloze Date: Sun, 7 Jun 2015 15:31:14 +0200 Subject: [PATCH] Run all specs by default --- default.mspec | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/default.mspec b/default.mspec index b76953b528..f40e69ce6a 100644 --- a/default.mspec +++ b/default.mspec @@ -10,18 +10,21 @@ class MSpecScript # Standard library specs set :library, [ 'library' ] + # Command line specs + set :command_line, [ 'command_line' ] + + # C extension API specs + set :capi, [ 'optional/capi' ] + + # A list of _all_ optional specs + set :optional, get(:capi) + # An ordered list of the directories containing specs to run - set :files, get(:language) + get(:core) + get(:library) + set :files, get(:command_line) + get(:language) + get(:core) + get(:library) + get(:optional) # This set of files is run by mspec ci set :ci_files, get(:files) - # Optional specs - set :capi, 'optional/capi' - - # A list of _all_ optional specs - set :optional, [get(:capi)] - # The default implementation to run the specs. # TODO: this needs to be more sophisticated since the # executable is not consistently named.