summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tox.ini10
1 files changed, 5 insertions, 5 deletions
diff --git a/tox.ini b/tox.ini
index 355ca7de..a3caad17 100644
--- a/tox.ini
+++ b/tox.ini
@@ -7,19 +7,19 @@ skip_missing_interpreters = True
[testenv]
commands =
- {envpython} setup.py --quiet clean develop
+ python setup.py --quiet clean develop
# Create tests/zipmods.zip
# Install the egg1 egg
# Remove the C extension so that we can test the PyTracer
- {envpython} igor.py zip_mods install_egg remove_extension
+ python igor.py zip_mods install_egg remove_extension
# Test with the PyTracer
- {envpython} igor.py test_with_tracer py {posargs}
+ python igor.py test_with_tracer py {posargs}
# Build the C extension and test with the CTracer
- {envpython} setup.py --quiet build_ext --inplace
- {envpython} igor.py test_with_tracer c {posargs}
+ python setup.py --quiet build_ext --inplace
+ python igor.py test_with_tracer c {posargs}
deps =
nose