File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 13
13
jobs :
14
14
build :
15
15
env :
16
- IDT_CREDENTIALS : ${{ secrets.IDT_CREDENTIALS }}
16
+ CREDENTIALS : ${{ secrets.CREDENTIALS }}
17
17
runs-on : ${{ matrix.os }}
18
18
strategy :
19
19
matrix :
46
46
- name : Test with pytest
47
47
run : |
48
48
pip install .
49
- echo "$IDT_CREDENTIALS " > test_secret_idt_credentials .json
49
+ echo "$CREDENTIALS " > test_secret_credentials .json
50
50
pytest --ignore=test/test_docstr_coverage.py -s
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ class TestIDTCalculateComplexityScore(unittest.TestCase):
55
55
def test_calculate_complexity_score (self ):
56
56
"""Test that a library-call invocation of complexity scoring works"""
57
57
test_dir = Path (__file__ ).parent
58
- with open (test_dir .parent / 'test_secret_idt_credentials .json' ) as test_credentials :
58
+ with open (test_dir .parent / 'test_secret_credentials .json' ) as test_credentials :
59
59
idt_accessor = IDTAccountAccessor (** json .load (test_credentials )['idt' ])
60
60
61
61
doc = sbol3 .Document ()
@@ -91,7 +91,7 @@ def test_commandline(self):
91
91
'--provider' ,
92
92
'idt' ,
93
93
'--credentials' ,
94
- str (test_dir .parent / 'test_secret_idt_credentials .json' ),
94
+ str (test_dir .parent / 'test_secret_credentials .json' ),
95
95
str (test_dir / 'test_files' / 'Test_file_Complexity_Scores.nt' ),
96
96
temp_name ,
97
97
]
You can’t perform that action at this time.
0 commit comments