[py-svn] commit/pytest-pep8: 3 new changesets
Bitbucket
commits-noreply at bitbucket.org
Thu Jun 21 10:29:12 CEST 2012
3 new commits in pytest-pep8:
https://bitbucket.org/hpk42/pytest-pep8/changeset/724106e3aca0/
changeset: 724106e3aca0
user: hpk42
date: 2012-06-20 22:24:42
summary: bump to version 1.0, fix tox.ini to use pypi packages
affected #: 4 files
diff -r c0bd7d35d8adac8b98acfc1db50de59585e42d97 -r 724106e3aca0eb7e11de4c6ef6acefa8b3be86da pytest_pep8.py
--- a/pytest_pep8.py
+++ b/pytest_pep8.py
@@ -3,7 +3,7 @@
import pytest
import pep8
-__version__ = '0.9.2.dev2'
+__version__ = '1.0'
HISTKEY = "pep8/mtimes"
diff -r c0bd7d35d8adac8b98acfc1db50de59585e42d97 -r 724106e3aca0eb7e11de4c6ef6acefa8b3be86da setup.py
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@
name='pytest-pep8',
description='pytest plugin to check PEP8 requirements',
long_description=open("README.txt").read(),
- version='0.9.2.dev2',
+ version='1.0',
author='Holger Krekel and Ronny Pfannschmidt',
author_email='holger.krekel at gmail.com',
url='http://bitbucket.org/hpk42/pytest-pep8/',
diff -r c0bd7d35d8adac8b98acfc1db50de59585e42d97 -r 724106e3aca0eb7e11de4c6ef6acefa8b3be86da test_pep8.py
--- a/test_pep8.py
+++ b/test_pep8.py
@@ -43,7 +43,7 @@
def test_w293w292(self, testdir, example):
result = testdir.runpytest("--pep8", )
result.stdout.fnmatch_lines([
- "*plugins*pep8*",
+ #"*plugins*pep8*",
"*W293*",
"*W292*",
])
@@ -53,7 +53,7 @@
testdir.tmpdir.ensure("hello.py")
result = testdir.runpytest("--pep8", )
result.stdout.fnmatch_lines([
- "*plugins*pep8*",
+ #"*plugins*pep8*",
"*W293*",
"*W292*",
"*1 failed*1 passed*",
diff -r c0bd7d35d8adac8b98acfc1db50de59585e42d97 -r 724106e3aca0eb7e11de4c6ef6acefa8b3be86da tox.ini
--- a/tox.ini
+++ b/tox.ini
@@ -7,8 +7,8 @@
[testenv]
deps=
- :testrun:pytest-cache
- :testrun:pytest
+ :pypi:pytest-cache
+ :pypi:pytest
commands=
py.test --junitxml={envlogdir}/junit-{envname}.xml {posargs}
https://bitbucket.org/hpk42/pytest-pep8/changeset/dc4ae3a75b4c/
changeset: dc4ae3a75b4c
user: hpk42
date: 2012-06-21 10:29:02
summary: add pytest-cache dep (doh)
affected #: 4 files
diff -r 724106e3aca0eb7e11de4c6ef6acefa8b3be86da -r dc4ae3a75b4c285c81c7044232b0426a23c9a221 CHANGELOG
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,9 @@
-0.9.2.dev
+1.0.1
+----------------------------------------------
+
+- add pytest-cache dep to setup.py
+
+1.0
----------------------------------------------
- extend pep8ignore to allow lines of form
diff -r 724106e3aca0eb7e11de4c6ef6acefa8b3be86da -r dc4ae3a75b4c285c81c7044232b0426a23c9a221 pytest_pep8.py
--- a/pytest_pep8.py
+++ b/pytest_pep8.py
@@ -3,7 +3,7 @@
import pytest
import pep8
-__version__ = '1.0'
+__version__ = '1.0.1'
HISTKEY = "pep8/mtimes"
diff -r 724106e3aca0eb7e11de4c6ef6acefa8b3be86da -r dc4ae3a75b4c285c81c7044232b0426a23c9a221 setup.py
--- a/setup.py
+++ b/setup.py
@@ -5,11 +5,11 @@
name='pytest-pep8',
description='pytest plugin to check PEP8 requirements',
long_description=open("README.txt").read(),
- version='1.0',
+ version='1.0.1',
author='Holger Krekel and Ronny Pfannschmidt',
author_email='holger.krekel at gmail.com',
url='http://bitbucket.org/hpk42/pytest-pep8/',
py_modules=['pytest_pep8'],
entry_points={'pytest11': ['pep8 = pytest_pep8']},
- install_requires=['pytest>=2.0', 'pep8>=1.3', ],
+ install_requires=['pytest-cache', 'pytest>=2.0', 'pep8>=1.3', ],
)
diff -r 724106e3aca0eb7e11de4c6ef6acefa8b3be86da -r dc4ae3a75b4c285c81c7044232b0426a23c9a221 tox.ini
--- a/tox.ini
+++ b/tox.ini
@@ -7,7 +7,6 @@
[testenv]
deps=
- :pypi:pytest-cache
:pypi:pytest
commands=
py.test --junitxml={envlogdir}/junit-{envname}.xml {posargs}
https://bitbucket.org/hpk42/pytest-pep8/changeset/b8b3bbe4935a/
changeset: b8b3bbe4935a
user: hpk42
date: 2012-06-21 10:29:04
summary: Added tag 1.0.1 for changeset dc4ae3a75b4c
affected #: 1 file
diff -r dc4ae3a75b4c285c81c7044232b0426a23c9a221 -r b8b3bbe4935a7e79af32de98c5749f9b462a319e .hgtags
--- a/.hgtags
+++ b/.hgtags
@@ -4,3 +4,4 @@
14359fa2c9eb31e5cdf7414603a14b943327bc07 0.7
04e2de41d527876325038b22a1721b9290b0db8d 0.7
1160e1328095d879238cdda32173476ecc5a5072 0.9.1
+dc4ae3a75b4c285c81c7044232b0426a23c9a221 1.0.1
Repository URL: https://bitbucket.org/hpk42/pytest-pep8/
--
This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.
More information about the pytest-commit
mailing list