Skip to content

Commit

Permalink
Ensure new core checks use latest dev package for testing (#2386)
Browse files Browse the repository at this point in the history
  • Loading branch information
ofek authored Oct 11, 2018
1 parent 386cb64 commit 6a0837e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions datadog_checks_dev/datadog_checks/dev/tooling/create.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ def construct_template_fields(integration_name, repo_choice, **kwargs):
.format(year=str(datetime.now().year))
)
support_type = 'core'
test_dev_dep = '-e ../datadog_checks_dev'
tox_base_dep = '../datadog_checks_base[deps]'
else:
author = 'U.N. Owen'
Expand All @@ -60,6 +61,7 @@ def construct_template_fields(integration_name, repo_choice, **kwargs):
)
license_header = ''
support_type = 'contrib'
test_dev_dep = 'datadog-checks-dev'
tox_base_dep = 'datadog-checks-base[deps]'

config = {
Expand All @@ -76,6 +78,7 @@ def construct_template_fields(integration_name, repo_choice, **kwargs):
'install_info': install_info,
'repo_choice': repo_choice,
'support_type': support_type,
'test_dev_dep': test_dev_dep,
'tox_base_dep': tox_base_dep,
}
config.update(kwargs)
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
datadog-checks-dev
{test_dev_dep}

0 comments on commit 6a0837e

Please sign in to comment.