diff --git a/dev-requirements.txt b/dev-requirements.txt new file mode 100644 index 0000000..2388c2c --- /dev/null +++ b/dev-requirements.txt @@ -0,0 +1,4 @@ +invoke>=0.5.1 +invocations>=0.4.0 +spec>=0.11.1 +sphinx>=1.1 diff --git a/tasks.py b/tasks.py new file mode 100644 index 0000000..d712149 --- /dev/null +++ b/tasks.py @@ -0,0 +1,7 @@ +from invocations import docs +from invocations.testing import test +from invocations.packaging import release + +from invoke import Collection + +ns = Collection(test, release, docs) diff --git a/tests/changelog.py b/tests/changelog.py new file mode 100644 index 0000000..092fad8 --- /dev/null +++ b/tests/changelog.py @@ -0,0 +1,21 @@ +from spec import Spec, skip + + +class Changelog(Spec): + class releases: + """ + Organization of issues into releases + """ + pass + + class nodes: + """ + Expansion/extension of docutils nodes + """ + pass + + class fullstack: + """ + End-to-end integration tests + """ + pass