Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(171)

Side by Side Diff: third_party/pycoverage/tox.ini

Issue 727003004: Add python coverage module to third_party (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/pycoverage/setup.py ('k') | tools/checklicenses/checklicenses.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Tox (http://tox.testrun.org/) is a tool for running tests
2 # in multiple virtualenvs. This configuration file will run the
3 # test suite on all supported python versions. To use it, "pip install tox"
4 # and then run "tox" from this directory.
5
6 [tox]
7 envlist = py25, py26, py27, py31, py32, py33, pypy
8
9 [testenv]
10 commands =
11 {envpython} setup.py --quiet clean develop
12
13 # Create tests/zipmods.zip
14 # Install the egg1 egg
15 # Remove the C extension so that we can test the PyTracer
16 {envpython} igor.py zip_mods install_egg remove_extension
17
18 # Test with the PyTracer
19 {envpython} igor.py test_with_tracer py {posargs}
20
21 # Build the C extension and test with the CTracer
22 {envpython} setup.py --quiet build_ext --inplace
23 {envpython} igor.py test_with_tracer c {posargs}
24
25 deps =
26 nose
27 mock
28
29 [testenv:pypy]
30 # PyPy has no C extensions
31 setenv =
32 COVERAGE_NO_EXTENSION=1
OLDNEW
« no previous file with comments | « third_party/pycoverage/setup.py ('k') | tools/checklicenses/checklicenses.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698