speedflow-plugin-test 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/speedflow/plugin/test/version.rb +1 -1
- data/spec/spec_helper.rb +7 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ff54750a203354c57d19e7acac8b25154c916060
|
4
|
+
data.tar.gz: 2933c716065e3c3515060b3fc7ccb3ee75d1ffc7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c733e7e20449c3191b7fbe30923fcaf6c5578644463b70acf395e928f012a60f81e0ceda69a1de41ebd61fcad45eef1e936d2d5b814bf13ad2ac79be14c5607
|
7
|
+
data.tar.gz: de099a89d7f43d30f70ba0765ef441c71656aebaa0938978baa460bc680ee2567bbea27fc4eed970fbd71daba0b3a8ede31c960c792cbf3377949d0aef329b95
|
data/spec/spec_helper.rb
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
|
2
2
|
require 'simplecov'
|
3
|
-
|
3
|
+
|
4
|
+
if ENV['CODECLIMATE_REPO_TOKEN']
|
5
|
+
require 'codeclimate-test-reporter'
|
6
|
+
CodeClimate::TestReporter.start
|
7
|
+
end
|
4
8
|
|
5
9
|
SimpleCov.start
|
10
|
+
|
11
|
+
require 'speedflow/plugin/test'
|