Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
gridtk
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
software
gridtk
Commits
c92867a3
Commit
c92867a3
authored
11 years ago
by
Manuel Günther
Browse files
Options
Downloads
Patches
Plain Diff
Added possibility to run gridtk tests in the xbob.db.aggregator
parent
b6998a38
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
gridtk/__init__.py
+1
-0
1 addition, 0 deletions
gridtk/__init__.py
gridtk/tests/__init__.py
+1
-1
1 addition, 1 deletion
gridtk/tests/__init__.py
setup.py
+7
-2
7 additions, 2 deletions
setup.py
with
9 additions
and
3 deletions
gridtk/__init__.py
+
1
−
0
View file @
c92867a3
...
@@ -4,3 +4,4 @@ import manager
...
@@ -4,3 +4,4 @@ import manager
import
local
import
local
import
sge
import
sge
import
easy
import
easy
import
tests
This diff is collapsed.
Click to expand it.
gridtk/tests/__init__.py
+
1
−
1
View file @
c92867a3
...
@@ -10,7 +10,7 @@ import time
...
@@ -10,7 +10,7 @@ import time
from
gridtk.models
import
Job
from
gridtk.models
import
Job
class
Database
Test
(
unittest
.
TestCase
):
class
GridTK
Test
(
unittest
.
TestCase
):
# This class defines tests for the gridtk
# This class defines tests for the gridtk
def
setUp
(
self
):
def
setUp
(
self
):
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
7
−
2
View file @
c92867a3
...
@@ -23,8 +23,13 @@ setup(
...
@@ -23,8 +23,13 @@ setup(
'
qdel.py = gridtk.script.grid:main
'
,
'
qdel.py = gridtk.script.grid:main
'
,
'
qsub.py = gridtk.script.grid:main
'
,
'
qsub.py = gridtk.script.grid:main
'
,
'
man.py = gridtk.script.grid:main
'
,
'
man.py = gridtk.script.grid:main
'
,
]
],
},
'
bob.test
'
:
[
'
gridtk = gridtk.tests:GridTKTest
'
,
],
},
long_description
=
open
(
'
README.rst
'
).
read
(),
long_description
=
open
(
'
README.rst
'
).
read
(),
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment