Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.buildout
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
isaak yansane-sisk
slapos.buildout
Commits
a5a54719
Commit
a5a54719
authored
Jun 07, 2006
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use lower-level egglinker api, since the buildout no longer provides
this api.
parent
d37c0a94
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
testrunnerrecipe/src/zc/recipe/testrunner.py
testrunnerrecipe/src/zc/recipe/testrunner.py
+3
-1
No files found.
testrunnerrecipe/src/zc/recipe/testrunner.py
View file @
a5a54719
...
...
@@ -19,6 +19,7 @@ $Id$
# XXX need tests
import
os
,
sys
import
zc.buildout.egglinker
class
TestRunner
:
...
...
@@ -30,7 +31,8 @@ class TestRunner:
def
install
(
self
):
distributions
=
self
.
options
[
'distributions'
].
split
()
path
=
self
.
buildout
.
distributions_path
(
distributions
+
[
'zope.testing'
])
locations
=
[
self
.
buildout
.
distribution_location
(
distribution
)
locations
=
[
zc
.
buildout
.
egglinker
.
location
(
distribution
,
[
self
.
buildout
.
eggs
])
for
distribution
in
distributions
]
script
=
self
.
options
.
get
(
'script'
,
self
.
name
)
script
=
self
.
buildout
.
buildout_path
(
'bin'
,
script
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment