summaryrefslogtreecommitdiff
path: root/tasks/__init__.py
diff options
context:
space:
mode:
authorOndřej Nový <onovy@debian.org>2018-04-06 14:33:35 +0200
committerOndřej Nový <onovy@debian.org>2018-04-06 14:33:35 +0200
commitbc9a847c9fd17500de84ba0076125f6553ffd0ab (patch)
tree58336e8030687aac0dd97782c6eba4e45e7085e3 /tasks/__init__.py
parent968d13f8db0ab2bc8d37036820139c73c9e101d2 (diff)
Import python-py_1.5.3.orig.tar.gz
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
+)