Skip to content

Commit b1db63b

Browse files
author
jmatthews
committed
pytest-svn tidyup
1 parent cb95dcd commit b1db63b

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

pytest-svn/MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
recursive-include tests *

pytest-svn/setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import sys
22
import logging
33

4-
from setuptools import setup, find_packages
4+
from setuptools import setup
55
from setuptools.command.test import test as TestCommand
66

77
classifiers = [
@@ -21,6 +21,7 @@
2121

2222
pytest_args = []
2323

24+
2425
class PyTest(TestCommand):
2526

2627
def initialize_options(self):
@@ -58,7 +59,7 @@ def main():
5859
'pytest-shutil',
5960
]
6061

61-
tests_require = [
62+
tests_require = ['pytest-cov',
6263
]
6364

6465
entry_points = {
+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
3+
def test_foo(svn_repo):
4+
assert hasattr(svn_repo, 'uri')

0 commit comments

Comments
 (0)