adding a tox file and a note in changelog
--HG-- branch : trunk
This commit is contained in:
parent
c56f4f9444
commit
740a668f52
|
@ -19,4 +19,6 @@ build/
|
||||||
dist/
|
dist/
|
||||||
py.egg-info
|
py.egg-info
|
||||||
issue/
|
issue/
|
||||||
|
env/
|
||||||
3rdparty/
|
3rdparty/
|
||||||
|
.tox
|
||||||
|
|
|
@ -10,6 +10,7 @@ Bug fixes / Maintenance
|
||||||
- fix issue57 -f|--looponfail to work with xpassing tests
|
- fix issue57 -f|--looponfail to work with xpassing tests
|
||||||
- fix pyimport() to work with directories
|
- fix pyimport() to work with directories
|
||||||
- streamline py.path.local.mkdtemp implementation and usage
|
- streamline py.path.local.mkdtemp implementation and usage
|
||||||
|
- don't print empty lines when showing junitxml-filename
|
||||||
|
|
||||||
Changes between 1.3.0 and 1.3.1
|
Changes between 1.3.0 and 1.3.1
|
||||||
==================================================
|
==================================================
|
||||||
|
|
|
@ -0,0 +1,29 @@
|
||||||
|
[project]
|
||||||
|
distpaths=
|
||||||
|
py
|
||||||
|
setup.py
|
||||||
|
distribute_setup.py
|
||||||
|
README.txt
|
||||||
|
MANIFEST.in
|
||||||
|
LICENSE
|
||||||
|
doc
|
||||||
|
testing
|
||||||
|
conftest.py
|
||||||
|
|
||||||
|
testpaths=
|
||||||
|
testing
|
||||||
|
conftest.py
|
||||||
|
|
||||||
|
[test]
|
||||||
|
command=py.test --confcutdir=. --junitxml=junit-%(envname)s.xml testing/
|
||||||
|
[testenv:py24]
|
||||||
|
python=python2.4
|
||||||
|
[testenv:py25]
|
||||||
|
python=python2.5
|
||||||
|
[testenv:py26]
|
||||||
|
python=python2.6
|
||||||
|
[testenv:jython]
|
||||||
|
python=jython
|
||||||
|
command=py.test-jython --confcutdir=. --junitxml=junit-%(envname)s.xml testing/
|
||||||
|
[testenv:py31]
|
||||||
|
python=python3.1
|
Loading…
Reference in New Issue