Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.learn.tensorflow
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
Model registry
Operate
Environments
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
bob
bob.learn.tensorflow
Merge requests
!34
biopredict: Handle number of parallel jobs correctly
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
biopredict: Handle number of parallel jobs correctly
predict
into
master
Overview
9
Commits
4
Pipelines
2
Changes
1
Merged
Amir MOHAMMADI
requested to merge
predict
into
master
7 years ago
Overview
9
Commits
4
Pipelines
2
Changes
1
Expand
0
0
Merge request reports
Viewing commit
517e0333
Prev
Next
Show latest version
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
517e0333
rename test method
· 517e0333
Amir MOHAMMADI
authored
7 years ago
bob/learn/tensorflow/test/test_estimator_scripts.py
+
2
−
2
Options
@@ -119,7 +119,7 @@ def _eval(tmpdir, model_dir, dummy_tfrecord):
eval_generic
([
config_path
])
def
test_eval
_once
():
def
test_eval
():
tmpdir
=
mkdtemp
(
prefix
=
'
bob_
'
)
try
:
model_dir
=
os
.
path
.
join
(
tmpdir
,
'
model_dir
'
)
@@ -137,7 +137,7 @@ def test_eval_once():
evaluated_path
=
os
.
path
.
join
(
eval_dir
,
'
evaluated
'
)
assert
os
.
path
.
exists
(
evaluated_path
),
evaluated_path
with
open
(
evaluated_path
)
as
f
:
doc
=
f
.
read
()
doc
=
f
.
read
()
assert
'
1
'
in
doc
,
doc
assert
'
200
'
in
doc
,
doc
Loading