datadog-sdk-testing 0.4.3 → 0.4.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ca215b8eb8d01f663364595bf456eda77d7034df
4
- data.tar.gz: f2780492e086a4ca445234dfe348f2dbcc7a0f57
3
+ metadata.gz: 5d72596101f63ee14879a016fe09f7b1933ab4e9
4
+ data.tar.gz: f22483d4c5195213e20f57c28af32f0c77df9ce0
5
5
  SHA512:
6
- metadata.gz: b064617b529061089d2ad8828d26130a2699c2d3db47e48afe161f23cccf4dcba9035cef88a8fdb3f51f72db5970f4c06c711303cc99374ab2ac51d88ff0b02f
7
- data.tar.gz: 7e4f406c3eb3235bbea42a27df5f2d9e52a3a64bb41823b54afbb4bda46d0fea35107c91e459287b43996e0d650c37f4e60a19f8fc0659a709c7d75e33404ffe
6
+ metadata.gz: 951ca57aa197d8fe8fa5dfa1c0011712194f6f73cde5cc8947516d26e86c596d4ab0a2b54afc62ea84b05b2b8a8a5d18a58b2dd4c8e59b86b24215d4f70569df
7
+ data.tar.gz: 999c1131086c3ddd5566c40fe212511608a687ded57f0a08fea6f33a7d2e778f5aeaf02ec4092e186b6107c2a38b1c907cc779b386a8ab4a85482b49fa354c3b
data/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # datadog-sdk-testing
2
- Gem repo providing Integration SDK testing/scaffolding facilities (unpublished).
2
+ Gem repo providing Integration SDK testing/scaffolding facilities.
3
3
 
4
4
  ## usage
5
5
  This gem essentially just provides a set of rake tasks to help you get up and running with integration testing and scaffolding. We expect to use this gem in `integrations-core` and `integrations-extras`.
@@ -343,7 +343,5 @@ namespace :ci do
343
343
  end
344
344
  t.reenable
345
345
  end
346
-
347
- task execute: [:before_install, :install, :before_script, :script]
348
346
  end
349
347
  end
data/lib/tasks/sdk.rake CHANGED
@@ -19,7 +19,7 @@ task 'setup_env' do
19
19
  check_env
20
20
  `mkdir -p #{ENV['SDK_HOME']}/venv`
21
21
  `wget -q -O #{ENV['SDK_HOME']}/venv/virtualenv.py https://raw.github.com/pypa/virtualenv/1.11.6/virtualenv.py`
22
- `python #{ENV['SDK_HOME']}/venv/virtualenv.py --no-site-packages --no-pip --no-setuptools #{ENV['SDK_HOME']}/venv/`
22
+ `python #{ENV['SDK_HOME']}/venv/virtualenv.py -p python2 --no-site-packages --no-pip --no-setuptools #{ENV['SDK_HOME']}/venv/`
23
23
  `wget -q -O #{ENV['SDK_HOME']}/venv/ez_setup.py https://bootstrap.pypa.io/ez_setup.py`
24
24
  `#{ENV['SDK_HOME']}/venv/bin/python #{ENV['SDK_HOME']}/venv/ez_setup.py`
25
25
  `wget -q -O #{ENV['SDK_HOME']}/venv/get-pip.py https://bootstrap.pypa.io/get-pip.py`
@@ -107,7 +107,7 @@ namespace :test do
107
107
  end
108
108
 
109
109
  RuboCop::RakeTask.new(:rubocop) do |t|
110
- t.patterns = ['ci/**/*.rb', 'Gemfile', 'Rakefile']
110
+ t.patterns = ['./*/ci/*.rake', 'Gemfile', 'Rakefile']
111
111
  end
112
112
 
113
113
  desc 'Lint the code through pylint'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: datadog-sdk-testing
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.3
4
+ version: 0.4.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jaime Fullaondo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-01-13 00:00:00.000000000 Z
11
+ date: 2017-01-23 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Datadog Integration SDK testing/scaffolding gem
14
14
  email: jaime.fullaondo@datadoghq.com
@@ -51,7 +51,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
51
51
  version: '0'
52
52
  requirements: []
53
53
  rubyforge_project:
54
- rubygems_version: 2.4.6
54
+ rubygems_version: 2.6.8
55
55
  signing_key:
56
56
  specification_version: 4
57
57
  summary: Datadog Integration SDK testing/scaffolding facilities.