We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41e2a4f commit c2505bcCopy full SHA for c2505bc
README.md
@@ -532,4 +532,38 @@ Sample bot using [Flask](http://flask.pocoo.org/)
532
533
## For SDK developers
534
535
-TBD
+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