Skip to content

Commit c2505bc

Browse files
committed
update readme
1 parent 41e2a4f commit c2505bc

File tree

1 file changed

+35
-1
lines changed

1 file changed

+35
-1
lines changed

README.md

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,4 +532,38 @@ Sample bot using [Flask](http://flask.pocoo.org/)
532532

533533
## For SDK developers
534534

535-
TBD
535+
First install for development.
536+
537+
```
538+
$ pip install -r requirements-dev.txt
539+
```
540+
541+
### Run tests
542+
543+
We test by using tox.
544+
We test the following versions.
545+
546+
* 2.7
547+
* 3.3
548+
* 3.4
549+
* 3.5
550+
551+
If you want to run all tests and run `flake8` against all versions:
552+
553+
```
554+
tox
555+
```
556+
557+
If you want to run all tests against 2.7 version:
558+
559+
```
560+
$ tox -e py27
561+
```
562+
563+
If you want to run a test against 2.7 version and against specific file:
564+
565+
```
566+
$ tox -e py27 -- tests/test_webhook.py
567+
```
568+
569+
And more... TBD

0 commit comments

Comments
 (0)