Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: README.md

Issue 29338156: Issue 3754 - Initial setup of the python-abp repo. (Closed)
Patch Set: Remove pytest from qa dependencies in tox.ini, change "filterlist" to "filter list" Created March 17, 2016, 2:39 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « COPYING ('k') | abp/__init__.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: README.md
===================================================================
--- a/README.md
+++ b/README.md
@@ -0,0 +1,26 @@
+# python-abp
+
+A library for working with Adblock Plus filter lists
+
+## Testing
+
+Unit tests for `python-abp` are located in the `/tests` directory.
+[Pytest](http://pytest.org/) is used for quickly running the tests
+during development.
+[Tox](https://tox.readthedocs.org/) is used for testing in different
+environments (Python 2.7, Python 3.5 and PyPy) and code quality
+reporting.
+
+In order to execute the tests, first create and activate development
+virtualenv:
+
+ $ python setup.py devenv
+ $ . devenv/bin/activate
+
+With the development virtualenv activated use pytest for a quick test run:
+
+ (devenv) $ py.test tests
+
+and tox for a comprehensive report:
+
+ (devenv) $ tox
« no previous file with comments | « COPYING ('k') | abp/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld