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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
slapos.buildout
Commits
627f5859
Commit
627f5859
authored
Oct 01, 2006
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated release info.
parent
5f75b25a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
49 additions
and
41 deletions
+49
-41
zc.recipe.testrunner/CHANGES.txt
zc.recipe.testrunner/CHANGES.txt
+33
-0
zc.recipe.testrunner/README.txt
zc.recipe.testrunner/README.txt
+2
-38
zc.recipe.testrunner/setup.py
zc.recipe.testrunner/setup.py
+14
-3
No files found.
zc.recipe.testrunner/CHANGES.txt
0 → 100644
View file @
627f5859
Change History
**************
1.0.0b2
=======
Added a defaults option to specify testrunner default options.
1.0.0b1
=======
Updated to work with zc.buildout 1.0.0b5.
1.0.0a3
=======
Added a defaults option that lets you specify test-runner default
options.
1.0.0a2
=======
Now provide a extra-paths option for including extra paths in test
scripts. This is useful when eggs depend on Python packages not
packaged as eggs.
1.0.0a1
=======
Initial public version
zc.recipe.testrunner/README.txt
View file @
627f5859
******************
Test-Runner Recipe
==================
******************
.. contents::
This recipe generates zope.testing test-runenr scripts for testing a
collection of eggs. The eggs must already be installed (using the
zc.recipe.egg recipe)
The test-runner recipe has 2 options:
- The eggs option takes the names of the eggs to be
tested. These are not installed by the recipe. They must be
installed by some other recipe (or using the buildout develop
option). The distributions are in the form os setuptools
requirements. Multiple distributions must be listed on separate
lines. This option is required.
- The script option gives the name of the script to generate, in the
buildout bin directory. Of the option isn't used, the part name
will be used.
To do
-----
- Support specifying testrunner defaults (e.g. verbosity, test file
patterns, etc.)
Change History
==============
1.0.0a2
-------
Now provide a extra-paths option for including extra paths in test
scripts. This is useful when eggs depend on Python packages not
packaged as eggs.
1.0.0a1
-------
Initial public version
zc.recipe.testrunner/setup.py
View file @
627f5859
import
os
from
setuptools
import
setup
,
find_packages
name
=
"zc.recipe.testrunner"
setup
(
name
=
name
,
version
=
"1.0.0b
1
"
,
version
=
"1.0.0b
2
"
,
author
=
"Jim Fulton"
,
author_email
=
"jim@zope.com"
,
description
=
"ZC Buildout recipe for creating test runners"
,
long_description
=
open
(
'README.txt'
).
read
(),
long_description
=
(
open
(
'README.txt'
).
read
()
+
'
\
n
'
+
open
(
'CHANGES.txt'
).
read
()
+
'
\
n
'
+
'Detailed Documentation
\
n
'
'**********************
\
n
'
+
'
\
n
'
+
open
(
os
.
path
.
join
(
'src'
,
'zc'
,
'recipe'
,
'testrunner'
,
'README.txt'
)
).
read
()
),
license
=
"ZPL 2.1"
,
keywords
=
"development build testing"
,
url
=
'http://svn.zope.org/zc.buildout'
,
...
...
@@ -16,7 +27,7 @@ setup(
include_package_data
=
True
,
package_dir
=
{
''
:
'src'
},
namespace_packages
=
[
'zc'
,
'zc.recipe'
],
install_requires
=
[
'zc.buildout >=1.0.0b
3
'
,
'zope.testing'
,
'setuptools'
,
install_requires
=
[
'zc.buildout >=1.0.0b
7
'
,
'zope.testing'
,
'setuptools'
,
'zc.recipe.egg >=1.0.0a3'
,
],
test_suite
=
name
+
'.tests.test_suite'
,
...
...
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