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
Łukasz Nowak
slapos.buildout
Commits
7d2064f3
Commit
7d2064f3
authored
Jun 29, 2006
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reuse egg recipe for egg management.
parent
a12ff7a0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
13 deletions
+8
-13
zc.recipe.testrunner/src/zc/recipe/testrunner/README.txt
zc.recipe.testrunner/src/zc/recipe/testrunner/README.txt
+0
-1
zc.recipe.testrunner/src/zc/recipe/testrunner/__init__.py
zc.recipe.testrunner/src/zc/recipe/testrunner/__init__.py
+4
-12
zc.recipe.testrunner/src/zc/recipe/testrunner/tests.py
zc.recipe.testrunner/src/zc/recipe/testrunner/tests.py
+4
-0
No files found.
zc.recipe.testrunner/src/zc/recipe/testrunner/README.txt
View file @
7d2064f3
...
...
@@ -6,7 +6,6 @@ for a project.
The test-runner recipe has 2 options:
eggs
The eggs option specified a list of eggs to test given as one ore
more setuptools requirement strings. Each string must be given on
...
...
zc.recipe.testrunner/src/zc/recipe/testrunner/__init__.py
View file @
7d2064f3
...
...
@@ -19,6 +19,7 @@ $Id$
import
os
,
sys
import
pkg_resources
import
zc.buildout.easy_install
import
zc.recipe.egg
class
TestRunner
:
...
...
@@ -29,22 +30,13 @@ class TestRunner:
options
[
'script'
]
=
os
.
path
.
join
(
buildout
[
'buildout'
][
'bin-directory'
],
options
.
get
(
'script'
,
self
.
name
),
)
options
[
'_e'
]
=
buildout
[
'buildout'
][
'eggs-directory'
]
options
[
'_d'
]
=
buildout
[
'buildout'
][
'develop-eggs-directory'
]
python
=
options
.
get
(
'python'
,
buildout
[
'buildout'
][
'python'
])
options
[
'executable'
]
=
buildout
[
python
][
'executable'
]
self
.
egg
=
zc
.
recipe
.
egg
.
Egg
(
buildout
,
name
,
options
)
def
install
(
self
):
options
=
self
.
options
requirements
=
[
r
.
strip
()
for
r
in
options
[
'eggs'
].
split
(
'
\
n
'
)
if
r
.
strip
()]
ws
=
zc
.
buildout
.
easy_install
.
working_set
(
requirements
+
[
'zope.testing'
],
executable
=
options
[
'executable'
],
path
=
[
options
[
'_d'
],
options
[
'_e'
]]
)
requirements
,
ws
=
self
.
egg
.
working_set
((
'zope.testing'
,
))
path
=
[
dist
.
location
for
dist
in
ws
]
project_names
=
[
pkg_resources
.
Requirement
.
parse
(
r
).
project_name
...
...
zc.recipe.testrunner/src/zc/recipe/testrunner/tests.py
View file @
7d2064f3
...
...
@@ -15,6 +15,7 @@
import
os
,
re
,
shutil
,
sys
,
tempfile
import
pkg_resources
import
zc.buildout.testing
import
zc.recipe.egg
import
unittest
import
zope.testing
...
...
@@ -30,6 +31,9 @@ def setUp(test):
open
(
os
.
path
.
join
(
test
.
globs
[
'sample_buildout'
],
'eggs'
,
'zc.recipe.testrunner.egg-link'
),
'w'
).
write
(
dirname
(
__file__
,
4
))
open
(
os
.
path
.
join
(
test
.
globs
[
'sample_buildout'
],
'eggs'
,
'zc.recipe.egg.egg-link'
),
'w'
).
write
(
dirname
(
zc
.
recipe
.
egg
.
__file__
,
4
))
# XXX assumes that zope.testing egg is a directory
open
(
os
.
path
.
join
(
test
.
globs
[
'sample_buildout'
],
...
...
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