Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
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
Kirill Smelkov
Zope
Commits
6dd28d6a
Commit
6dd28d6a
authored
Sep 11, 2008
by
Rob Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
don't muck up the environment is Zope libs are already available
parent
6511ac57
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
test.py
test.py
+5
-1
No files found.
test.py
View file @
6dd28d6a
...
...
@@ -53,7 +53,11 @@ else:
zhome
=
scriptdir
shome
=
os
.
path
.
join
(
zhome
,
'lib'
,
'python'
)
sys
.
path
.
insert
(
0
,
shome
)
# add SOFTWARE_HOME to sys.path, but only if Zope isn't already available
try
:
import
Zope2
except
ImportError
:
sys
.
path
.
insert
(
0
,
shome
)
defaults
=
'--tests-pattern ^tests$ -v'
.
split
()
defaults
+=
[
'-m'
,
...
...
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