Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.extension
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
Show more breadcrumbs
bob
bob.extension
Merge requests
!66
Couldn't fetch the linked file.
Migrate to conda based CI
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Migrate to conda based CI
condapackage
into
master
Overview
0
Commits
0
Pipelines
12
Changes
0
Closed
André Anjos
requested to merge
condapackage
into
master
7 years ago
Overview
0
Commits
0
Pipelines
12
Changes
1
Expand
0
0
Merge request reports
Compare
version 10
version 10
c743f70c
7 years ago
version 9
a275040f
7 years ago
version 8
04bef1bb
7 years ago
version 7
67be2981
7 years ago
version 6
c7bb00e2
7 years ago
version 5
7cd3dee7
7 years ago
version 4
b5d1cb57
7 years ago
version 3
6f46203f
7 years ago
version 2
402ea4c1
7 years ago
version 1
51b4d49b
7 years ago
master (base)
and
latest version
latest version
e772f3dd
3 commits,
7 years ago
version 10
c743f70c
2 commits,
7 years ago
version 9
a275040f
1 commit,
7 years ago
version 8
04bef1bb
1 commit,
7 years ago
version 7
67be2981
1 commit,
7 years ago
version 6
c7bb00e2
7 commits,
7 years ago
version 5
7cd3dee7
6 commits,
7 years ago
version 4
b5d1cb57
4 commits,
7 years ago
version 3
6f46203f
3 commits,
7 years ago
version 2
402ea4c1
2 commits,
7 years ago
version 1
51b4d49b
1 commit,
7 years ago
Show latest version
1 file
+
4
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
bob/extension/test_extensions.py
+
4
−
4
Options
@@ -35,15 +35,15 @@ def _run(package, run_call):
assert
os
.
path
.
exists
(
_bin
(
'
python
'
))
# nosetests
subprocess
.
call
([
_bin
(
'
nosetests
'
),
'
-sv
'
])
subprocess
.
call
([
'
python
'
,
_bin
(
'
nosetests
'
),
'
-sv
'
])
# check that the call is working
subprocess
.
call
([
_bin
(
run_call
[
0
])]
+
run_call
[
1
:])
subprocess
.
call
([
'
python
'
,
_bin
(
run_call
[
0
])]
+
run_call
[
1
:])
subprocess
.
call
([
_bin
(
'
sphinx-build
'
),
_join
(
'
doc
'
),
_join
(
'
sphinx
'
)])
subprocess
.
call
([
'
python
'
,
_bin
(
'
sphinx-build
'
),
_join
(
'
doc
'
),
_join
(
'
sphinx
'
)])
assert
os
.
path
.
exists
(
_join
(
'
sphinx
'
,
'
index.html
'
))
subprocess
.
call
([
_bin
(
'
python
'
),
'
-c
'
,
'
import pkg_resources; from bob.example.%s import get_config; print(get_config())
'
%
package
])
subprocess
.
call
([
'
python
'
,
_bin
(
'
python
'
),
'
-c
'
,
'
import pkg_resources; from bob.example.%s import get_config; print(get_config())
'
%
package
])
finally
:
shutil
.
rmtree
(
temp_dir
)
Loading