Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
transaction
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
transaction
Commits
e2032274
Commit
e2032274
authored
May 16, 2012
by
Tres Seaver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Addd support for continuous integration using 'tox' and 'jenkins'.
parent
e98d68b7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
40 additions
and
0 deletions
+40
-0
.bzrignore
.bzrignore
+4
-0
CHANGES.txt
CHANGES.txt
+2
-0
tox.ini
tox.ini
+34
-0
No files found.
.bzrignore
0 → 100644
View file @
e2032274
.tox
__pycache__
*.egg-info
.coverage
CHANGES.txt
View file @
e2032274
...
...
@@ -4,6 +4,8 @@ Changes
1.2.1 (unreleased)
------------------
- Added support for continuous integration using ``tox`` and ``jenkins``.
- Added ``setup.py docs`` alias (installs ``Sphinx`` and dependencies).
- Added ``setup.py dev`` alias (runs ``setup.py develop`` plus installs
...
...
tox.ini
0 → 100644
View file @
e2032274
[tox]
envlist
=
# Jython support pending 2.7 support, due 2012-07-15 or so. See:
# http://fwierzbicki.blogspot.com/2012/03/adconion-to-fund-jython-27.html
# py26,py27,py32,pypy,jython,coverage
py26,py27,py32,pypy,coverage,docs
[testenv]
commands
=
python setup.py test -q
deps
=
transaction
[testenv:jython]
commands
=
jython setup.py test -q
[testenv:coverage]
basepython
=
python2.6
commands
=
nosetests --with-xunit --with-xcoverage
deps
=
nose
coverage
nosexcover
[testenv:docs]
basepython
=
python2.6
commands
=
sphinx-build -b html -d docs/_build/doctrees docs docs/_build/html
sphinx-build
-b
doctest
-d
docs/_build/doctrees
docs
docs/_build/doctest
deps
=
Sphinx
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment