1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2026-01-22 14:41:39 +00:00

Make tox work with non-venv interpreters

Previously, as soon as an interpreter that wasn't the one having been
used for `env` was used by tox, we would get errors because our C
modules wouldn't be built for this interpreter.

The makefile has been changed to make `make modules` interpreter-aware,
thus fixing this problem.
This commit is contained in:
Virgil Dupras
2017-09-19 13:14:11 -04:00
parent 8cd0ef4c2b
commit a6b1e6e9ab
2 changed files with 21 additions and 17 deletions

View File

@@ -4,7 +4,12 @@ skipsdist = True
skip_missing_interpreters = True
[testenv]
whitelist_externals =
make
setenv =
PYTHON="{envpython}"
commands =
make modules
flake8
py.test core hscommon
deps =