We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da6713e commit 72984caCopy full SHA for 72984ca
1 file changed
README.md
@@ -59,6 +59,19 @@ def update_thing(event, context):
59
return {"PhysicalResourceId": "arn:aws:fake:myID"}
60
```
61
62
+## Running Tests
63
+
64
+To run the tests locally, you need Python 2.7 and `pip`. Ideally, you should
65
+use a virtualenv.
66
67
+```
68
+$ pip install -r test-requirements.txt
69
+$ py.test
70
71
72
+The tests use `mock` and `py.test` and will give you a terminal coverage
73
+report. Currently the tests cover ~90% of the (very small) codebase.
74
75
## License
76
77
This code is released under the MIT software license, see LICENSE.txt for
0 commit comments