File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 32
32
renku/templates
33
33
key : ${{ env.DEPENDENCY_CACHE_PREFIX }}-${{ runner.os }}-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('poetry.lock') }}-${{ hashFiles('Makefile') }}
34
34
env :
35
- DEPENDENCY_CACHE_PREFIX : " v1 "
35
+ DEPENDENCY_CACHE_PREFIX : " 20230929 "
36
36
- name : Install dependencies
37
37
if : steps.dependency-cache.outputs.cache-hit != 'true' || 'refs/heads/master' == github.ref || 'refs/heads/develop' == github.ref || startsWith(github.ref, 'refs/tags/')
38
38
env :
65
65
path : cassettes
66
66
key : ${{ env.NETWORK_CACHE_PREFIX }}-${{ steps.year-week.outputs.date }}-${{ hashFiles('poetry.lock') }}-${{ github.job }}
67
67
env :
68
- NETWORK_CACHE_PREFIX : " v1 "
68
+ NETWORK_CACHE_PREFIX : " 20230929 "
69
69
- name : Set coveralls path mapping
70
70
shell : bash
71
71
run : |
Original file line number Diff line number Diff line change 46
46
path : cassettes
47
47
key : ${{ env.NETWORK_CACHE_PREFIX }}-${{ steps.year-week.outputs.date }}-${{ hashFiles('poetry.lock') }}-${{ github.job }}
48
48
env :
49
- NETWORK_CACHE_PREFIX : " v1 "
49
+ NETWORK_CACHE_PREFIX : " 20230929 "
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ def test_template_show(isolated_runner):
91
91
result = isolated_runner .invoke (cli , command + ["R-minimal" ])
92
92
93
93
assert 0 == result .exit_code , format_result_exception (result )
94
- assert re .search ("^Name: Basic R (.*) Project$" , result .output , re .MULTILINE ) is not None
94
+ assert re .search ("^Name: R (.*) Project$" , result .output , re .MULTILINE ) is not None
95
95
finally :
96
96
sys .argv = argv
97
97
@@ -101,7 +101,7 @@ def test_template_show_no_id(runner, project):
101
101
result = runner .invoke (cli , ["template" , "show" ])
102
102
103
103
assert 0 == result .exit_code , format_result_exception (result )
104
- assert re .search ("^Name: Basic Python (.*) Project$" , result .output , re .MULTILINE ) is not None
104
+ assert re .search ("^Name: Python (.*) Project$" , result .output , re .MULTILINE ) is not None
105
105
106
106
107
107
def test_template_show_no_id_outside_project (isolated_runner ):
You can’t perform that action at this time.
0 commit comments