Skip to content

Commit 516c88e

Browse files
committed
Fix markdown formatting.
1 parent 7fbfdee commit 516c88e

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,12 +326,21 @@ Please sign the [Contributor License Agreement](https://nylas.com/cla.html) befo
326326
### Releasing a new version
327327

328328
We have a three-step process for releasing a new version of the Python SDK. Remember that people depend on this library not breaking, so don't cut corners.
329+
329330
1. Run the unit tests.
330331
`python setup.py test`
331332
2. Run the "system" tests. They use a live server to check that everything works as expected, so you'll need to have a valid Nylas application id and secret.
332333
In the tests directory you'll find a file named `tests/credentials.py.template`. Rename it into `credentials.py` and change the APP_ID and APP_SECRET to your own app id and secret.
333-
Run `PYTHONPATH=/your-sdk-path python tests/oauth.py` and `PYTHONPATH=/your-sdk-path python tests/system.py`.
334+
335+
Run the tests:
336+
337+
```shell
338+
PYTHONPATH=/your-sdk-path python tests/oauth.py
339+
PYTHONPATH=/your-sdk-path python tests/system.py
340+
```
341+
334342
3. Finally, you can create a new release by doing:
343+
335344
```shell
336345
python setup.py release <major/minor/patch>
337346
git log # to verify

0 commit comments

Comments
 (0)