Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Pulsar
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
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
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
NDIP
Pulsar
Commits
e6f703c7
Commit
e6f703c7
authored
11 years ago
by
John Chilton
Browse files
Options
Downloads
Patches
Plain Diff
Suppress extraneous output for passing tests.
parent
f56571ba
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
test/check.py
+5
-2
5 additions, 2 deletions
test/check.py
test/integration_test.py
+3
-0
3 additions, 0 deletions
test/integration_test.py
with
8 additions
and
2 deletions
test/check.py
+
5
−
2
View file @
e6f703c7
...
@@ -75,7 +75,8 @@ finally:
...
@@ -75,7 +75,8 @@ finally:
try
:
try
:
client
.
download_output
(
temp_output_path
+
"
x
"
,
temp_directory
)
client
.
download_output
(
temp_output_path
+
"
x
"
,
temp_directory
)
except
BaseException
as
e
:
except
BaseException
as
e
:
traceback
.
print_exc
(
e
)
if
not
options
.
suppress_output
:
traceback
.
print_exc
(
e
)
output_file
=
open
(
temp_output_path
,
'
r
'
)
output_file
=
open
(
temp_output_path
,
'
r
'
)
try
:
try
:
output_contents
=
output_file
.
read
()
output_contents
=
output_file
.
read
()
...
@@ -87,7 +88,8 @@ finally:
...
@@ -87,7 +88,8 @@ finally:
#client.download_work_dir_output("workdir_output")
#client.download_work_dir_output("workdir_output")
#assert os.path.exists("workdir_output")
#assert os.path.exists("workdir_output")
except
BaseException
as
e
:
except
BaseException
as
e
:
traceback
.
print_exc
(
e
)
if
not
options
.
suppress_output
:
traceback
.
print_exc
(
e
)
raise
e
raise
e
finally
:
finally
:
shutil
.
rmtree
(
temp_directory
)
shutil
.
rmtree
(
temp_directory
)
...
@@ -102,6 +104,7 @@ def main():
...
@@ -102,6 +104,7 @@ def main():
parser
.
add_option
(
'
--transport
'
,
default
=
None
)
# set to curl to use pycurl
parser
.
add_option
(
'
--transport
'
,
default
=
None
)
# set to curl to use pycurl
parser
.
add_option
(
'
--cache
'
,
default
=
False
,
action
=
"
store_true
"
)
parser
.
add_option
(
'
--cache
'
,
default
=
False
,
action
=
"
store_true
"
)
parser
.
add_option
(
'
--test_errors
'
,
default
=
False
,
action
=
"
store_true
"
)
parser
.
add_option
(
'
--test_errors
'
,
default
=
False
,
action
=
"
store_true
"
)
parser
.
add_option
(
'
--suppress_output
'
,
default
=
False
,
action
=
"
store_true
"
)
(
options
,
args
)
=
parser
.
parse_args
()
(
options
,
args
)
=
parser
.
parse_args
()
run
(
options
)
run
(
options
)
...
...
This diff is collapsed.
Click to expand it.
test/integration_test.py
+
3
−
0
View file @
e6f703c7
...
@@ -22,7 +22,10 @@ class IntegrationTest(TestCase):
...
@@ -22,7 +22,10 @@ class IntegrationTest(TestCase):
self
.
__run
(
app_conf
=
{
"
private_key
"
:
"
testtoken
"
},
private_token
=
"
testtoken
"
,
transport
=
"
curl
"
,
cache
=
False
,
test_errors
=
True
)
self
.
__run
(
app_conf
=
{
"
private_key
"
:
"
testtoken
"
},
private_token
=
"
testtoken
"
,
transport
=
"
curl
"
,
cache
=
False
,
test_errors
=
True
)
def
__run
(
self
,
app_conf
=
{},
**
kwds
):
def
__run
(
self
,
app_conf
=
{},
**
kwds
):
kwds
[
"
suppress_output
"
]
=
True
from
.test_utils
import
test_server
from
.test_utils
import
test_server
with
test_server
(
app_conf
=
app_conf
)
as
server
:
with
test_server
(
app_conf
=
app_conf
)
as
server
:
options
=
Bunch
(
url
=
server
.
application_url
,
**
kwds
)
options
=
Bunch
(
url
=
server
.
application_url
,
**
kwds
)
print
"
Running
"
run
(
options
)
run
(
options
)
print
"
DoneRunning
"
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