summaryrefslogtreecommitdiff
path: root/tests/__init__.py
diff options
context:
space:
mode:
authorSamuel Colvin <s@muelcolvin.com>2015-10-14 20:08:55 +0100
committerSamuel Colvin <s@muelcolvin.com>2015-10-14 20:08:55 +0100
commitfa48751fedbfeb5b1b6010304960710d78874cbb (patch)
tree8a5aaf5e88d01077efe91dd129bc1b2a4aef7fe5 /tests/__init__.py
parentaada162a4d4ce461cf8376811be62ca7db9ec785 (diff)
downloadrq-fa48751fedbfeb5b1b6010304960710d78874cbb.tar.gz
correct SLOW env var, run slow tests on ci
Diffstat (limited to 'tests/__init__.py')
-rw-r--r--tests/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/__init__.py b/tests/__init__.py
index 93f11b3..7371a92 100644
--- a/tests/__init__.py
+++ b/tests/__init__.py
@@ -32,7 +32,7 @@ def slow(f):
@wraps(f)
def _inner(*args, **kwargs):
- if os.environ.get('ONLY_RUN_FAST_TESTS'):
+ if os.environ.get('RUN_SLOW_TESTS_TOO'):
f(*args, **kwargs)
return _inner