File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ def test_docker(self):
11
11
'instructions' : [
12
12
('base' , 'centos:7' ),
13
13
('user' , 'neuro' ),
14
+ ('workdir' , '/home/neuro' ),
14
15
(
15
16
'miniconda' ,
16
17
{
@@ -40,6 +41,7 @@ def test_singularity(self):
40
41
'instructions' : [
41
42
('base' , 'docker://debian:stretch-slim' ),
42
43
('user' , 'neuro' ),
44
+ ('workdir' , '/home/neuro' ),
43
45
(
44
46
'miniconda' ,
45
47
{
Original file line number Diff line number Diff line change @@ -35,9 +35,9 @@ generic:
35
35
conda install -y {{ miniconda.conda_opts|default("-q") }} --name {{ miniconda.env_name }} \
36
36
{%- for pkg in miniconda.conda_install %}
37
37
{% if not loop.last -%}
38
- ' {{ pkg }}' \
38
+ " {{ pkg }}" \
39
39
{%- else -%}
40
- ' {{ pkg }}'
40
+ " {{ pkg }}"
41
41
{%- endif -%}
42
42
{% endfor %}
43
43
sync && conda clean --all && sync
@@ -47,9 +47,9 @@ generic:
47
47
pip install --no-cache-dir {{ miniconda.pip_opts }} \
48
48
{%- for pkg in miniconda.pip_install %}
49
49
{% if not loop.last -%}
50
- ' {{ pkg }}' \
50
+ " {{ pkg }}" \
51
51
{%- else -%}
52
- ' {{ pkg }}'
52
+ " {{ pkg }}"
53
53
{%- endif -%}
54
54
{% endfor %}"
55
55
rm -rf ~/.cache/pip/*
You can’t perform that action at this time.
0 commit comments