Skip to content
This repository was archived by the owner on Oct 23, 2023. It is now read-only.

Commit 05539fc

Browse files
committed
Add xdist coverage, bumb versions and add params to cfg
1 parent 20655d1 commit 05539fc

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*.db
55
*.pid
66
.python-version
7-
.coverage
7+
.coverage*
88
.DS_Store
99
.tox
1010
pip-log.txt

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool:pytest]
22
python_files=test*.py
3-
addopts=--tb=native -p no:doctest
3+
addopts=--tb=native -p no:doctest -p no:logging --cov=raven -nauto
44
norecursedirs=raven build bin dist docs htmlcov hooks node_modules .* {args}
55
DJANGO_SETTINGS_MODULE = tests.contrib.django.settings
66
python_paths = tests

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@
7070
'pytest-timeout==1.2.0',
7171
'pytest-xdist==1.18.2',
7272
'pytest-pythonpath==0.7.1',
73-
'pytest-sugar==0.8',
73+
'pytest-sugar==0.9.0',
7474
'pytest-cov',
75-
'pytest-flake8==0.9',
75+
'pytest-flake8==0.9.1',
7676
'requests',
7777
'tornado>=4.1',
7878
'webob',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ basepython =
6767
pypy: pypy
6868

6969
commands =
70-
py.test {env:TESTPATH} --cov=raven {posargs}
70+
py.test {env:TESTPATH} {posargs}
7171

7272
# Linters
7373
[testenv:flake8]

0 commit comments

Comments
 (0)