From 23f567f3fe31b50d87e79e3c24a29aa888cc2872 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Tue, 9 Nov 2021 10:15:13 -0500 Subject: [PATCH] build: use this setup.py command because it shows compiler errors that might happen. The `pip install` command only shows errors with -v, and then there's a ton of other crap to wade through. --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index 28adb28a6..3f39965d2 100644 --- a/tox.ini +++ b/tox.ini @@ -38,6 +38,7 @@ commands = python igor.py zip_mods # Build the C extension and test with the CTracer + python setup.py --quiet build_ext --inplace python -m pip install -q -e . python igor.py test_with_tracer c {posargs}