aboutsummaryrefslogtreecommitdiffstats
path: root/bot/constants.py
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2022-02-20 12:20:24 +0000
committerGravatar Chris Lovering <[email protected]>2022-02-20 14:13:02 +0000
commit58e33b1b3dbf623ac4e7796a392dd8446b809744 (patch)
tree74c20fbd156ec70c62db7fae56cd82af4acda4c7 /bot/constants.py
parentMerge pull request #1037 from python-discord/fix-error-in-pull-1033 (diff)
Don't call bot.run() if IN_CI env var is set
Diffstat (limited to 'bot/constants.py')
-rw-r--r--bot/constants.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/bot/constants.py b/bot/constants.py
index b4d7bc24..5d876d97 100644
--- a/bot/constants.py
+++ b/bot/constants.py
@@ -143,6 +143,7 @@ class Client(NamedTuple):
prefix = environ.get("PREFIX", ".")
token = environ.get("BOT_TOKEN")
debug = environ.get("BOT_DEBUG", "true").lower() == "true"
+ in_ci = environ.get("IN_CI", "false").lower() == "true"
github_bot_repo = "https://github.com/python-discord/sir-lancebot"
# Override seasonal locks: 1 (January) to 12 (December)
month_override = int(environ["MONTH_OVERRIDE"]) if "MONTH_OVERRIDE" in environ else None