1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
From 65769c724dac08f094f2e6752c2080dceef00f94 Mon Sep 17 00:00:00 2001
From: Colin Watson <cjwatson@debian.org>
Date: Tue, 4 Mar 2014 00:06:16 +0000
Subject: Set sitepackages = True in tox.ini.
This allows tests to run on systems without network access.
Author: Colin Watson <cjwatson@debian.org>
Forwarded: no
Last-Update: 2014-03-04
Patch-Name: tox-sitepackages.patch
---
tox.ini | 1 +
1 file changed, 1 insertion(+)
diff --git a/tox.ini b/tox.ini
index 080bc13..85055d1 100644
--- a/tox.ini
+++ b/tox.ini
@@ -13,6 +13,7 @@ setenv =
WITH_COVERAGE = x
PYTHONUNBUFFERED = x
commands = {envpython} {toxinidir}/tests/test_tblib.py
+sitepackages = True
[base]
deps =
|