mesa_test 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/bin/mesa_test +1 -8
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 21f9e8369c23178cb01705769265516520818d9b1fcada2205737b9b2f138d49
|
4
|
+
data.tar.gz: 6e73bb48c7191428f9c339354458f6ec0726631bb47d1343d6a9039ce1ede187
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c6bb8007f91028f00346e6a7815c859edff0afe0e02519c2587d97c0070f6bfb8d58ab5f20fc5cf4589945a3efff6752e4c70d8ca003706914a2c391723ad6bb
|
7
|
+
data.tar.gz: 0d00b29789bfcbe71b3fe896e8bd2b84ce14bca0899282a3b22977ff4dceff5bd2b536da36bc8c93686145fb36b3fea6f92e9e33fa08b76bf0120c930d3aca00
|
data/bin/mesa_test
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# if true, submit cases to localhost:3000 and load local mesa_test library
|
4
4
|
# rather than system version
|
5
|
-
DEVELOPMENT_MODE =
|
5
|
+
DEVELOPMENT_MODE = false
|
6
6
|
|
7
7
|
if DEVELOPMENT_MODE
|
8
8
|
require_relative '../lib/mesa_test'
|
@@ -274,9 +274,6 @@ class MesaTest < Thor
|
|
274
274
|
'submission of complete results.', default: false
|
275
275
|
option :log, type: :boolean, default: true, desc: 'Save yml file of test ' \
|
276
276
|
'results in test case directory.'
|
277
|
-
# option :force, type: :boolean, aliases: '-f'
|
278
|
-
# option :module, type: :string, aliases: '-m', default: 'all'
|
279
|
-
# option :svn, type: :boolean, default: true
|
280
277
|
def install_and_test_revision(version, mesa_dir)
|
281
278
|
s = nil # to make sure using_sdk? below will work properly
|
282
279
|
s = create_and_check_submitter(force: options[:force]) if options[:submit]
|
@@ -297,10 +294,6 @@ class MesaTest < Thor
|
|
297
294
|
check_mesa(m)
|
298
295
|
update_mesa(mesa: m, diff: diff, mod: options[:module].downcase.to_sym)
|
299
296
|
|
300
|
-
# m = create_and_check_mesa(mesa_dir: mesa_dir, diff: diff,
|
301
|
-
# mod: options[:module].downcase.to_sym,
|
302
|
-
# use_svn: options[:svn])
|
303
|
-
|
304
297
|
# run all tests. Don't be fooled, whether or not a diff happens is set
|
305
298
|
# by the diff attribute of the mesa object, set above.
|
306
299
|
m.each_test_run_and_diff(mod: options[:module].downcase.to_sym,
|