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

Side by Side Diff: README.md

Issue 29338156: Issue 3754 - Initial setup of the python-abp repo. (Closed)
Patch Set: Update ignore files, describe testing in README.md and fix a typo in tox.ini. Created March 16, 2016, 3:56 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « COPYING ('k') | abp/__init__.py » ('j') | setup.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # python-abp
2
3 A library for working with Adblock Plus filterlists.
Felix Dahlke 2016/03/17 09:25:32 Nit: "filter lists" should be two words.
4
5 ## Testing
6
7 Unit tests for `python-abp` are located in the `/tests` directory.
8 [Pytest](http://pytest.org/) is used for quickly running the tests
9 during development.
10 [Tox](https://tox.readthedocs.org/) is used for testing in different
11 environments (Python 2.7, Python 3.5 and PyPy) and code quality
12 reporting.
13
14 In order to execute the tests, first create and activate development
15 virtualenv:
16
17 $ python setup.py devenv
18 $ . devenv/bin/activate
19
20 After the development virtualenv is created use pytest for a quick
21 test run:
22
23 (devenv) $ py.test tests
24
25 and tox for a comprehensive report:
26
27 (devenv) $ tox
OLDNEW
« no previous file with comments | « COPYING ('k') | abp/__init__.py » ('j') | setup.py » ('J')

Powered by Google App Engine
This is Rietveld