We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb95dcd commit b1db63bCopy full SHA for b1db63b
pytest-svn/MANIFEST.in
@@ -0,0 +1 @@
1
+recursive-include tests *
pytest-svn/setup.py
@@ -1,7 +1,7 @@
import sys
2
import logging
3
4
-from setuptools import setup, find_packages
+from setuptools import setup
5
from setuptools.command.test import test as TestCommand
6
7
classifiers = [
@@ -21,6 +21,7 @@
21
22
pytest_args = []
23
24
+
25
class PyTest(TestCommand):
26
27
def initialize_options(self):
@@ -58,7 +59,7 @@ def main():
58
59
'pytest-shutil',
60
]
61
- tests_require = [
62
+ tests_require = ['pytest-cov',
63
64
65
entry_points = {
pytest-svn/tests/integration/test_svn.py
@@ -0,0 +1,4 @@
+def test_foo(svn_repo):
+ assert hasattr(svn_repo, 'uri')
0 commit comments