Skip to content

Commit

Permalink
Run all specs by default
Browse files Browse the repository at this point in the history
  • Loading branch information
eregon committed Jun 7, 2015
1 parent 2a4ab31 commit e5d0bd0
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions default.mspec
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit e5d0bd0

Please sign in to comment.