@@ -14,6 +14,7 @@ def test_read_srml():
14
14
srml .read_srml (srml_testfile )
15
15
16
16
17
+ @pytest .mark .skip (reason = "SRML server is undergoing maintenance as of 12-2023" )
17
18
@pytest .mark .remote_data
18
19
@pytest .mark .flaky (reruns = RERUNS , reruns_delay = RERUNS_DELAY )
19
20
def test_read_srml_remote ():
@@ -46,6 +47,7 @@ def test_read_srml_nans_exist():
46
47
assert data ['dni_0_flag' ].iloc [1119 ] == 99
47
48
48
49
50
+ @pytest .mark .skip (reason = "SRML server is undergoing maintenance as of 12-2023" )
49
51
@pytest .mark .parametrize ('url,year,month' , [
50
52
('http://solardat.uoregon.edu/download/Archive/EUPO1801.txt' ,
51
53
2018 , 1 ),
@@ -76,6 +78,7 @@ def test__map_columns(column, expected):
76
78
assert srml ._map_columns (column ) == expected
77
79
78
80
81
+ @pytest .mark .skip (reason = "SRML server is undergoing maintenance as of 12-2023" )
79
82
@pytest .mark .remote_data
80
83
@pytest .mark .flaky (reruns = RERUNS , reruns_delay = RERUNS_DELAY )
81
84
def test_get_srml ():
@@ -86,6 +89,7 @@ def test_get_srml():
86
89
assert_frame_equal (file_data , requested )
87
90
88
91
92
+ @pytest .mark .skip (reason = "SRML server is undergoing maintenance as of 12-2023" )
89
93
@fail_on_pvlib_version ('0.11' )
90
94
@pytest .mark .remote_data
91
95
@pytest .mark .flaky (reruns = RERUNS , reruns_delay = RERUNS_DELAY )
@@ -97,6 +101,7 @@ def test_read_srml_month_from_solardat():
97
101
assert file_data .equals (requested )
98
102
99
103
104
+ @pytest .mark .skip (reason = "SRML server is undergoing maintenance as of 12-2023" )
100
105
@fail_on_pvlib_version ('0.11' )
101
106
@pytest .mark .remote_data
102
107
@pytest .mark .flaky (reruns = RERUNS , reruns_delay = RERUNS_DELAY )
@@ -112,6 +117,7 @@ def test_15_minute_dt_index():
112
117
assert (data .index [3 ::4 ].minute == 45 ).all ()
113
118
114
119
120
+ @pytest .mark .skip (reason = "SRML server is undergoing maintenance as of 12-2023" )
115
121
@fail_on_pvlib_version ('0.11' )
116
122
@pytest .mark .remote_data
117
123
@pytest .mark .flaky (reruns = RERUNS , reruns_delay = RERUNS_DELAY )
@@ -127,6 +133,7 @@ def test_hourly_dt_index():
127
133
assert (data .index .minute == 0 ).all ()
128
134
129
135
136
+ @pytest .mark .skip (reason = "SRML server is undergoing maintenance as of 12-2023" )
130
137
@pytest .mark .remote_data
131
138
@pytest .mark .flaky (reruns = RERUNS , reruns_delay = RERUNS_DELAY )
132
139
def test_get_srml_hourly ():
@@ -137,6 +144,7 @@ def test_get_srml_hourly():
137
144
assert_index_equal (data .index , expected_index )
138
145
139
146
147
+ @pytest .mark .skip (reason = "SRML server is undergoing maintenance as of 12-2023" )
140
148
@pytest .mark .remote_data
141
149
@pytest .mark .flaky (reruns = RERUNS , reruns_delay = RERUNS_DELAY )
142
150
def test_get_srml_minute ():
@@ -154,6 +162,7 @@ def test_get_srml_minute():
154
162
assert meta ['filenames' ] == ['EUPO1801.txt' ]
155
163
156
164
165
+ @pytest .mark .skip (reason = "SRML server is undergoing maintenance as of 12-2023" )
157
166
@pytest .mark .remote_data
158
167
@pytest .mark .flaky (reruns = RERUNS , reruns_delay = RERUNS_DELAY )
159
168
def test_get_srml_nonexisting_month_warning ():
0 commit comments