You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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`.
Copy file name to clipboardexpand all lines: CONTRIBUTING.md
+7-7
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,17 @@
1
1
# Contributing Guidelines
2
2
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
4
4
documentation, we greatly value feedback and contributions from our community.
5
5
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
7
7
information to effectively respond to your bug report or contribution.
8
8
9
9
10
10
## Reporting Bugs/Feature Requests
11
11
12
12
We welcome you to use the GitHub issue tracker to report bugs or suggest features.
13
13
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
15
15
reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:
16
16
17
17
* A reproducible test case or series of steps
@@ -36,17 +36,17 @@ To send us a pull request, please:
36
36
5. Send us a pull request, answering any default questions in the pull request interface.
37
37
6. Pay attention to any automated CI failures reported in the pull request, and stay involved in the conversation.
38
38
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
40
40
[creating a pull request](https://help.github.com/articles/creating-a-pull-request/).
41
41
42
42
43
43
## 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.
45
45
46
46
47
47
## 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
Copy file name to clipboardexpand all lines: README.rst
+14-48
Original file line number
Diff line number
Diff line change
@@ -14,36 +14,31 @@ tool.)
14
14
15
15
python3 -m venv env
16
16
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
19
19
20
20
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:
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):
28
27
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
+
```
32
34
33
35
If you want to generate an HTML coverage report afterwards, run
34
36
``coverage html``. The report is output to ``htmlcov/index.html``.
35
37
36
38
Usage
37
39
-----
38
40
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.
47
42
48
43
Installation
49
44
^^^^^^^^^^^^
@@ -55,52 +50,23 @@ the Python Package Index (PyPI). It requires Python 3.
55
50
56
51
pip3 install uluru-cli
57
52
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
-
70
53
Command: init
71
54
^^^^^^^^^^^^^
72
55
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.
77
57
78
58
.. code-block:: bash
79
59
80
-
uluru-cli init \
81
-
--language java \
82
-
--project-settings examples/java_project.yaml
60
+
uluru-cli init
83
61
84
62
Command: generate
85
63
^^^^^^^^^^^^^^^^^
86
64
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.
90
66
91
67
.. code-block:: bash
92
68
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
0 commit comments