Skip to content

Commit e04ae47

Browse files
authored
Merge pull request #179 from kattni/add-cookiecutter
Add cookiecutter to Adabot
2 parents 8362e20 + 5edc939 commit e04ae47

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

adabot/circuitpython_libraries.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,8 @@ def run_library_checks(validators, bundle_submodules, latest_pylint, kw_args):
107107
output_handler("Latest pylint is: {}".format(latest_pylint))
108108

109109
repos = common_funcs.list_repos(include_repos=('Adafruit_Blinka',
110-
'CircuitPython_Community_Bundle'))
110+
'CircuitPython_Community_Bundle',
111+
'cookiecutter-adafruit-circuitpython'))
111112
output_handler("Found {} repos to check.".format(len(repos)))
112113
bundle_submodules = common_funcs.get_bundle_submodules()
113114
output_handler("Found {} submodules in the bundle.".format(len(bundle_submodules)))

adabot/update_cp_org_libraries.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
from adabot import github_requests as github
3333
from adabot import pypi_requests as pypi
3434

35-
DO_NOT_VALIDATE = ['CircuitPython_Community_Bundle']
35+
DO_NOT_VALIDATE = ['CircuitPython_Community_Bundle', 'cookiecutter-adafruit-circuitpython']
3636

3737
# Setup ArgumentParser
3838
cmd_line_parser = argparse.ArgumentParser(
@@ -149,7 +149,8 @@ def get_contributors(repo):
149149

150150
print("\n".join(startup_message))
151151

152-
repos = common_funcs.list_repos(include_repos=("CircuitPython_Community_Bundle",))
152+
repos = common_funcs.list_repos(include_repos=("CircuitPython_Community_Bundle",
153+
'cookiecutter-adafruit-circuitpython',))
153154

154155
new_libs = {}
155156
updated_libs = {}

0 commit comments

Comments
 (0)