File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33from solid .auth import Auth
44
5- IDP = os .getenv ('IDP ' )
6- USERNAME = os .getenv ('USERNAME ' )
7- PASSWORD = os .getenv ('PASSWORD ' )
5+ IDP = os .getenv ('SOLID_IDP ' )
6+ USERNAME = os .getenv ('SOLID_USERNAME ' )
7+ PASSWORD = os .getenv ('SOLID_PASSWORD ' )
88
99
1010def test_login ():
Original file line number Diff line number Diff line change @@ -14,10 +14,10 @@ def gen_random_str() -> str:
1414 return uuid .uuid4 ().hex
1515
1616
17- POD_ENDPOINT = os .getenv ('POD_ENDPOINT ' )
18- IDP = os .getenv ('IDP ' )
19- USERNAME = os .getenv ('USERNAME ' )
20- PASSWORD = os .getenv ('PASSWORD ' )
17+ POD_ENDPOINT = os .getenv ('SOLID_ENDPOINT ' )
18+ IDP = os .getenv ('SOLID_IDP ' )
19+ USERNAME = os .getenv ('SOLID_USERNAME ' )
20+ PASSWORD = os .getenv ('SOLID_PASSWORD ' )
2121PRIVATE_RES = f'{ POD_ENDPOINT } /private/test.md.md'
2222
2323
@@ -125,7 +125,6 @@ def test_read_folder():
125125
126126
127127def test_file ():
128- base_url = POD_ENDPOINT
129128 url = POD_ENDPOINT + 'test.md.' + gen_random_str ()
130129 api = SolidAPI (None )
131130
You can’t perform that action at this time.
0 commit comments