datadog-sdk-testing 0.4.3 → 0.4.4
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/README.md +1 -1
- data/lib/tasks/ci/common.rb +0 -2
- data/lib/tasks/sdk.rake +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5d72596101f63ee14879a016fe09f7b1933ab4e9
|
|
4
|
+
data.tar.gz: f22483d4c5195213e20f57c28af32f0c77df9ce0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
|
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`.
|
data/lib/tasks/ci/common.rb
CHANGED
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
|
|
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
|
|
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.
|
|
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-
|
|
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.
|
|
54
|
+
rubygems_version: 2.6.8
|
|
55
55
|
signing_key:
|
|
56
56
|
specification_version: 4
|
|
57
57
|
summary: Datadog Integration SDK testing/scaffolding facilities.
|