mirror of
https://github.com/vale981/releases
synced 2025-03-05 09:41:42 -05:00
Start making it a real project
This commit is contained in:
parent
6046bf251c
commit
5d0717b7de
3 changed files with 32 additions and 0 deletions
4
dev-requirements.txt
Normal file
4
dev-requirements.txt
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
invoke>=0.5.1
|
||||||
|
invocations>=0.4.0
|
||||||
|
spec>=0.11.1
|
||||||
|
sphinx>=1.1
|
7
tasks.py
Normal file
7
tasks.py
Normal file
|
@ -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)
|
21
tests/changelog.py
Normal file
21
tests/changelog.py
Normal file
|
@ -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
|
Loading…
Add table
Reference in a new issue