don't depend on (and don't actually use anymore) testing/__init__.py

--HG--
branch : trunk
This commit is contained in:
holger krekel 2010-06-04 00:39:58 +02:00
parent bdd1006e06
commit c56f4f9444
6 changed files with 5 additions and 6 deletions

View File

@ -1 +0,0 @@
#

View File

@ -1,7 +1,7 @@
import sys
import py
from py._path import svnwc as svncommon
from testing.path.common import CommonFSTests
from common import CommonFSTests
class CommonSvnTests(CommonFSTests):

View File

@ -1,7 +1,7 @@
import py
import sys
from py.path import local
from testing.path import common
import common
failsonjython = py.test.mark.xfail("sys.platform.startswith('java')")
failsonjywin32 = py.test.mark.xfail("sys.platform.startswith('java') "

View File

@ -1,5 +1,5 @@
import py
from testing.path import svntestbase
import svntestbase
from py.path import SvnAuth
import time
import sys

View File

@ -2,7 +2,7 @@ import py
from py._path.svnurl import InfoSvnCommand
import datetime
import time
from testing.path.svntestbase import CommonSvnTests
from svntestbase import CommonSvnTests
def pytest_funcarg__path1(request):
repo, repourl, wc = request.getfuncargvalue("repowc1")

View File

@ -2,7 +2,7 @@ import py
import os, sys
from py._path.svnwc import InfoSvnWCCommand, XMLWCStatus, parse_wcinfotime
from py._path import svnwc as svncommon
from testing.path.svntestbase import CommonSvnTests
from svntestbase import CommonSvnTests
def test_make_repo(path1, tmpdir):
repo = tmpdir.join("repo")