From bc2c6364e46f8da4bc297ccecc70d4597c6292f6 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Mon, 23 Nov 2015 21:12:18 +0000 Subject: [PATCH] Added variables to circle file --- circle.yml | 3 +++ runtests | 2 -- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/circle.yml b/circle.yml index 247f8d0..981396e 100644 --- a/circle.yml +++ b/circle.yml @@ -1,6 +1,9 @@ machine: python: version: 3.4.2 + environment: + DEBUG: true + DATABASE_URL: postgres://localhost/theorangeonenets dependencies: pre: diff --git a/runtests b/runtests index baf3d78..29278e1 100755 --- a/runtests +++ b/runtests @@ -3,8 +3,6 @@ set -e export PATH=env/bin:${PATH} -export DEBUG=true -export DATABASE_URL=postgres://localhost/theorangeonenet flake8 project --ignore=E128,E501,E401 --exclude="migrations,settings,*/wsgi.py" echo "All Python tests passed!"