Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
telecom
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
Roque
telecom
Commits
b3daf23d
Commit
b3daf23d
authored
Jun 08, 2017
by
Roque Porchetto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Buildout points to right repos. New auto-test.
parent
642e8796
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
2 deletions
+31
-2
software_release/software.cfg
software_release/software.cfg
+13
-2
tests/__init__.py
tests/__init__.py
+18
-0
No files found.
software_release/software.cfg
View file @
b3daf23d
...
...
@@ -7,7 +7,18 @@ parts +=
[eggs]
eggs +=
mne
[erp5]
recipe = slapos.recipe.build:gitclone
repository = https://lab.nexedi.com/nexedi/erp5.git
branch = portal_callables
git-executable = ${git:location}/bin/git
[wendelin]
<= erp5
repository = https://lab.nexedi.com/klaus/wendelin.git
branch = master
[telecom]
<= erp5
repository = https://gitlab-ci-token:D6mznxrE2KjtqkPjRab7@lab.nexedi.com/rporchetto/telecom.git
...
...
@@ -17,4 +28,4 @@ branch = master
repository_id_list += telecom
[local-bt5-repository]
list = ${erp5:location}/bt5 ${erp5:location}/product/ERP5/bootstrap ${telecom:location}/bt5
\ No newline at end of file
list = ${erp5:location}/bt5 ${erp5:location}/product/ERP5/bootstrap ${wendelin:location}/bt5 ${telecom:location}/bt5
\ No newline at end of file
tests/__init__.py
0 → 100644
View file @
b3daf23d
from
test_suite
import
ERP5TypeTestSuite
import
glob
import
os.path
import
re
HERE
=
os
.
path
.
dirname
(
__file__
)
BT5
=
os
.
path
.
join
(
os
.
path
.
split
(
HERE
)[
0
],
'bt5'
)
class
WendelinERP5
(
ERP5TypeTestSuite
):
def
getTestList
(
self
):
component_re
=
re
.
compile
(
".*/([^/]+)/TestTemplateItem/portal_components"
"/test
\
.[^.]+
\
.([^.]+).py$"
)
return
[
'%s:%s'
%
(
x
.
group
(
1
),
x
.
group
(
2
))
\
for
x
in
[
component_re
.
match
(
y
)
for
y
in
glob
.
glob
(
os
.
path
.
join
(
BT5
,
'*'
,
'*'
,
'*'
,
'test.erp5.test*.py'
))]]
\ No newline at end of file
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