From daa97a2f5d0be526e69477c79a6de14402233829 Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Mon, 6 Nov 2017 17:42:02 -0800 Subject: [PATCH] Move config to invoke.yml and pull in some packaging settings --- invoke.yml | 11 +++++++++++ tasks.py | 9 --------- 2 files changed, 11 insertions(+), 9 deletions(-) create mode 100644 invoke.yml diff --git a/invoke.yml b/invoke.yml new file mode 100644 index 0000000..d30a39f --- /dev/null +++ b/invoke.yml @@ -0,0 +1,11 @@ +packaging: + sign: true + wheel: true + # TODO: this wants to really be 'related' to the docs settings somehow; used + # to use os.path.join() when it was in-python. + changelog_file: docs/changelog.rst +run: + env: + # Our ANSI color tests test against hardcoded codes appropriate for + # this terminal, for now. + TERM: screen-256color diff --git a/tasks.py b/tasks.py index ad01479..3a9b986 100644 --- a/tasks.py +++ b/tasks.py @@ -44,12 +44,3 @@ def test(c, verbose=True, color=True, capture='sys', opts=''): test, packaging=release, ) -ns.configure({ - 'run': { - 'env': { - # Our ANSI color tests test against hardcoded codes appropriate for - # this terminal, for now. - 'TERM': 'screen-256color', - }, - }, -})