summaryrefslogtreecommitdiff
path: root/tasks/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'tasks/__init__.py')
-rw-r--r--tasks/__init__.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/tasks/__init__.py b/tasks/__init__.py
new file mode 100644
index 0000000..5d74b64
--- /dev/null
+++ b/tasks/__init__.py
@@ -0,0 +1,12 @@
+"""
+Invoke tasks to help with pytest development and release process.
+"""
+
+import invoke
+
+from . import vendoring
+
+
+ns = invoke.Collection(
+ vendoring
+)