File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -421,7 +421,7 @@ jobs:
421
421
os :
422
422
- image_name : ubuntu-latest
423
423
download_name : manylinux_x86_64
424
- python-version : [ "3.8", "3.9" ]
424
+ python-version : [ "3.9", ]
425
425
steps :
426
426
- uses : actions/checkout@v4
427
427
- name : Set up Python
Original file line number Diff line number Diff line change @@ -87,27 +87,28 @@ async def _asyncio_connect(url, timeout=5):
87
87
88
88
@pytest .fixture (autouse = True )
89
89
def random_ocsp_response_validation_cache ():
90
+ RANDOM_FILENAME_SUFFIX_LEN = 10
90
91
file_path = {
91
92
"linux" : os .path .join (
92
93
"~" ,
93
94
".cache" ,
94
95
"snowflake" ,
95
- f"ocsp_response_validation_cache{ random_string ()} " ,
96
+ f"ocsp_response_validation_cache{ random_string (RANDOM_FILENAME_SUFFIX_LEN )} " ,
96
97
),
97
98
"darwin" : os .path .join (
98
99
"~" ,
99
100
"Library" ,
100
101
"Caches" ,
101
102
"Snowflake" ,
102
- f"ocsp_response_validation_cache{ random_string ()} " ,
103
+ f"ocsp_response_validation_cache{ random_string (RANDOM_FILENAME_SUFFIX_LEN )} " ,
103
104
),
104
105
"windows" : os .path .join (
105
106
"~" ,
106
107
"AppData" ,
107
108
"Local" ,
108
109
"Snowflake" ,
109
110
"Caches" ,
110
- f"ocsp_response_validation_cache{ random_string ()} " ,
111
+ f"ocsp_response_validation_cache{ random_string (RANDOM_FILENAME_SUFFIX_LEN )} " ,
111
112
),
112
113
}
113
114
yield SFDictFileCache (
You can’t perform that action at this time.
0 commit comments