Skip to content

Commit 2f0c344

Browse files
committed
TST: move test_parsing of s3 buckets to pandas-test public bucket
1 parent df23f91 commit 2f0c344

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

pandas/io/tests/test_parsers.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -3537,7 +3537,7 @@ def test_compact_ints_as_recarray(self):
35373537
data = ('0,1,0,0\n'
35383538
'1,1,0,0\n'
35393539
'0,1,0,1')
3540-
3540+
35413541
result = read_csv(StringIO(data), delimiter=',', header=None,
35423542
compact_ints=True, as_recarray=True)
35433543
ex_dtype = np.dtype([(str(i), 'i1') for i in range(4)])
@@ -4126,14 +4126,13 @@ def setUp(self):
41264126

41274127
@tm.network
41284128
def test_url_gz(self):
4129-
url = ('https://raw.github.com/mdagost/pandas/url_gzip_fix/'
4130-
'pandas/io/tests/data/salary.table.gz')
4129+
url = 'https://raw.github.com/pydata/pandas/master/pandas/io/tests/data/salary.table.gz'
41314130
url_table = read_table(url, compression="gzip", engine="python")
41324131
tm.assert_frame_equal(url_table, self.local_table)
41334132

41344133
@tm.network
41354134
def test_url_gz_infer(self):
4136-
url = ('https://s3.amazonaws.com/pandas-url-test/salary.table.gz')
4135+
url = ('https://s3.amazonaws.com/pandas-test/salary.table.gz')
41374136
url_table = read_table(url, compression="infer", engine="python")
41384137
tm.assert_frame_equal(url_table, self.local_table)
41394138

0 commit comments

Comments
 (0)