Skip to content

Commit ed8d7dd

Browse files
authored
Pre-commit framework/hook for linting, testing (aws-cloudformation#218)
This replaces `run_lint`, and is much more convenient. (`run_lint` still provided for backwards compatibility, but will remove soon.) Only fixes required were removing trailing whitespace from `CODE_OF_CONDUCT.md` and `CONTRIBUTING.md`.
1 parent 948aa2f commit ed8d7dd

10 files changed

+116
-231
lines changed

.pre-commit-config.yaml

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
exclude: ^(buildspec.yml|.pre-commit-config.yaml)$
2+
repos:
3+
- repo: https://github.com/pre-commit/pre-commit-hooks
4+
rev: v2.0.0
5+
hooks:
6+
- id: check-case-conflict
7+
- id: end-of-file-fixer
8+
- id: mixed-line-ending
9+
args:
10+
- --fix=lf
11+
- id: trailing-whitespace
12+
- id: flake8
13+
additional_dependencies:
14+
- flake8-bugbear>=19.3.0
15+
- flake8-builtins>=1.4.1
16+
- flake8-commas>=2.0.0
17+
- flake8-comprehensions>=2.1.0
18+
- flake8-debugger>=3.1.0
19+
- flake8-pep3101>=1.2.1
20+
# language_version: python3.6
21+
- id: pretty-format-json
22+
args:
23+
- --autofix
24+
- --indent=4
25+
- --no-sort-keys
26+
- id: check-merge-conflict
27+
# - id: check-yaml # doesn't work with CloudFormation templates/intrinsics, should use cfn-lint instead
28+
- repo: https://github.com/pre-commit/mirrors-isort
29+
rev: v4.3.17
30+
hooks:
31+
- id: isort
32+
# language_version: python3.6
33+
- repo: https://github.com/ambv/black
34+
rev: stable
35+
hooks:
36+
- id: black
37+
# language_version: python3.6
38+
- repo: https://github.com/pre-commit/pygrep-hooks
39+
rev: v1.3.0
40+
hooks:
41+
- id: python-check-blanket-noqa
42+
- id: python-check-mock-methods
43+
- id: python-no-log-warn
44+
- repo: https://github.com/PyCQA/bandit
45+
rev: f5a6f0ca62 # TODO: update once a release > 1.5.1 hits with this change in
46+
hooks:
47+
- id: bandit
48+
files: "^src/"
49+
# have to skip B101, contract tests use it and there's no way to skip for specific files
50+
# have to skip B322, as there is no way to indicate the codebase is Python 3 only (input only vulnerable in Py2)
51+
args: ["--skip", "B101,B322"]
52+
- repo: local
53+
hooks:
54+
- id: pylint-local
55+
name: pylint-local
56+
description: Run pylint in the local virtualenv
57+
entry: pylint "setup.py" "src/" "tests/"
58+
language: system
59+
# ignore all files, run on hard-coded modules instead
60+
exclude: "^."
61+
always_run: true
62+
- id: pytest-local
63+
name: pytest-local
64+
description: Run pytest in the local virtualenv
65+
# although we mock SDK calls, credentials must be set, otherwise the credential-checking code
66+
# in boto_helpers.py fails. this probably needs fixing properly in future.
67+
# on the other hand, this means that accidentally exported creds aren't honoured when running
68+
# tests, also a good thing
69+
entry: >
70+
env AWS_ACCESS_KEY_ID=""
71+
AWS_SECRET_ACCESS_KEY=""
72+
AWS_SESSION_TOKEN=""
73+
pytest --cov="rpdk.core" --doctest-modules --random-order-bucket="parent" "tests/" --pyargs "rpdk.core"
74+
language: system
75+
# ignore all files, run on hard-coded modules instead
76+
exclude: "^."
77+
always_run: true

CODE_OF_CONDUCT.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
## Code of Conduct
2-
This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
3-
For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
2+
This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
3+
For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
44
[email protected] with any additional questions or comments.

CONTRIBUTING.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# Contributing Guidelines
22

3-
Thank you for your interest in contributing to our project. Whether it's a bug report, new feature, correction, or additional
3+
Thank you for your interest in contributing to our project. Whether it's a bug report, new feature, correction, or additional
44
documentation, we greatly value feedback and contributions from our community.
55

6-
Please read through this document before submitting any issues or pull requests to ensure we have all the necessary
6+
Please read through this document before submitting any issues or pull requests to ensure we have all the necessary
77
information to effectively respond to your bug report or contribution.
88

99

1010
## Reporting Bugs/Feature Requests
1111

1212
We welcome you to use the GitHub issue tracker to report bugs or suggest features.
1313

14-
When filing an issue, please check [existing open](https://github.com/awslabs/aws-cloudformation-rpdk/issues), or [recently closed](https://github.com/awslabs/aws-cloudformation-rpdk/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already
14+
When filing an issue, please check [existing open](https://github.com/awslabs/aws-cloudformation-rpdk/issues), or [recently closed](https://github.com/awslabs/aws-cloudformation-rpdk/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already
1515
reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:
1616

1717
* A reproducible test case or series of steps
@@ -36,17 +36,17 @@ To send us a pull request, please:
3636
5. Send us a pull request, answering any default questions in the pull request interface.
3737
6. Pay attention to any automated CI failures reported in the pull request, and stay involved in the conversation.
3838

39-
GitHub provides additional document on [forking a repository](https://help.github.com/articles/fork-a-repo/) and
39+
GitHub provides additional document on [forking a repository](https://help.github.com/articles/fork-a-repo/) and
4040
[creating a pull request](https://help.github.com/articles/creating-a-pull-request/).
4141

4242

4343
## Finding contributions to work on
44-
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels ((enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/awslabs/aws-cloudformation-rpdk/labels/help%20wanted) issues is a great place to start.
44+
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels ((enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/awslabs/aws-cloudformation-rpdk/labels/help%20wanted) issues is a great place to start.
4545

4646

4747
## Code of Conduct
48-
This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
49-
For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
48+
This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
49+
For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
5050
[email protected] with any additional questions or comments.
5151

5252

README.rst

+14-48
Original file line numberDiff line numberDiff line change
@@ -14,36 +14,31 @@ tool.)
1414
1515
python3 -m venv env
1616
source env/bin/activate
17-
pip install -e .
18-
pip install -r requirements.txt
17+
pip install -e . -r requirements.txt
18+
pre-commit install
1919
2020
You will also need to install a language plugin, such as [the Java language plugin](https://github.com/aws-cloudformation/aws-cloudformation-rpdk-java-plugin), also via `pip install`. For example, assuming the plugin is checked out in the same parent directory as this repository:
2121

2222
.. code-block:: bash
2323
2424
pip install -e ../aws-cloudformation-rpdk-java-plugin
2525
26-
Before committing code, please execute the ``run_lint`` script. This performs
27-
several steps for your convenience:
26+
Linting and running unit tests is done via [pre-commit](https://pre-commit.com/), and so is performed automatically on commit. The continuous integration also runs these checks. Manual options are available so you don't have to commit):
2827

29-
* Auto-formatting of all code to make it uniform and PEP8 compliant
30-
* Linting for issues the auto-formatter doesn't catch
31-
* Run all tests and confirm coverage is over a threshold
28+
```
29+
# run all hooks on all files, mirrors what the CI runs
30+
pre-commit run --all-files
31+
# run unit tests only. can also be used for other hooks, e.g. black, flake8, pylint-local
32+
pre-commit run pytest-local
33+
```
3234

3335
If you want to generate an HTML coverage report afterwards, run
3436
``coverage html``. The report is output to ``htmlcov/index.html``.
3537

3638
Usage
3739
-----
3840

39-
Quickstart
40-
^^^^^^^^^^
41-
42-
.. code-block:: bash
43-
44-
pip3 install uluru-cli
45-
uluru-cli generate \
46-
examples/aws-kinesis-stream.yaml
41+
WARNING: Future Information; we have *not* published to PyPI yet.
4742

4843
Installation
4944
^^^^^^^^^^^^
@@ -55,52 +50,23 @@ the Python Package Index (PyPI). It requires Python 3.
5550
5651
pip3 install uluru-cli
5752
58-
Command: project-settings
59-
^^^^^^^^^^^^^^^^^^^^^^^^^
60-
61-
To output the default project settings for a given language, use the
62-
``project-settings`` command.
63-
64-
.. code-block:: bash
65-
66-
uluru-cli project-settings \
67-
--language java \
68-
--output project.yaml
69-
7053
Command: init
7154
^^^^^^^^^^^^^
7255

73-
To create project files such as build files and autocomplete for your specific language and IDE,
74-
use the ``init`` command. An output directory can be set with the optional ``output-directory`` argument
75-
(Defaults to the current directory). You can customize certain, language-specific project settings, otherwise the
76-
default settings are used.
56+
To create a project in the current directory, use the ``init`` command. A wizard will guide you through the creation.
7757

7858
.. code-block:: bash
7959
80-
uluru-cli init \
81-
--language java \
82-
--project-settings examples/java_project.yaml
60+
uluru-cli init
8361
8462
Command: generate
8563
^^^^^^^^^^^^^^^^^
8664

87-
To generate code, a resource provider definition is required. You can customize
88-
certain, language-specific project settings, otherwise the default settings
89-
are used.
65+
To refresh auto-generated code, use the ``generate`` command. Usually, plugins try to integrate this command in the native build flow, so please consult a plugin's README to see if this is necessary.
9066

9167
.. code-block:: bash
9268
93-
uluru-cli generate \
94-
examples/aws-kinesis-stream.yaml \
95-
--language java \
96-
--project-settings examples/java_project.yaml \
97-
--output-directory projects/resource-provider/
98-
99-
Encoding
100-
--------
101-
102-
This tool expects input files to be UTF-8 encoded (without a byte order mark (BOM)), and will
103-
output UTF-8 encoded files (without a BOM).
69+
uluru-cli generate
10470
10571
Plugin system
10672
-------------

buildspec.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@ version: 0.2
22
phases:
33
pre_build:
44
commands:
5-
- pip install --upgrade pip wheel
6-
- pip install . -r requirements.txt
5+
- pip install --upgrade pip wheel awscli . -r requirements.txt
76
- aws configure add-model --service-model "file://cloudformation-2010-05-15.normal.json" --service-name cloudformation
87
build:
98
commands:
10-
- ./run_lint
9+
- pre-commit run --all-files

json_lint

-59
This file was deleted.

newline_lint

-71
This file was deleted.

0 commit comments

Comments
 (0)