blob: 50cc240900f2f6bc569f0962faa7add5c2e2b402 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
# For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt
# Steps to prepare and run coverage.py tests, for Pythons < 2.5
# This should do the same steps as tox.ini
easy_install nose==1.2.1 mock==0.6.0
python setup.py --quiet clean develop
python igor.py zip_mods install_egg remove_extension
python igor.py test_with_tracer py
python setup.py --quiet build_ext --inplace
python igor.py test_with_tracer c
|