test_dumps_ints_larger_than_maxsize is failing on the MacPython 32-bit tests: https://dev.azure.com/pandas-dev/pandas-wheels/_build/results?buildId=39266&view=logs&j=bb1c2637-64c6-57bd-9ea6-93823b2df951&t=9c62e7ff-391e-517d-ede1-af63bc6a25da&l=1307

=================================== FAILURES ===================================
______ TestUltraJSONTests.test_dumps_ints_larger_than_maxsize[2147483648] ______
[gw1] linux -- Python 3.8.0 /venv/bin/python

self = <pandas.tests.io.json.test_ujson.TestUltraJSONTests object at 0xd19d2e38>
bigNum = 2147483648

    @pytest.mark.parametrize("bigNum", [sys.maxsize + 1, -(sys.maxsize + 2)])
    def test_dumps_ints_larger_than_maxsize(self, bigNum):
        # GH34395
        bigNum = sys.maxsize + 1
        encoding = ujson.encode(bigNum)
        assert str(bigNum) == encoding

        # GH20599
        with pytest.raises(ValueError):
>           assert ujson.loads(encoding) == bigNum
E           Failed: DID NOT RAISE <class 'ValueError'>

Adding a skip for now. Will get proper 32-bit testing set up sometime (or we just drop support officially)

Comment From: mroeschke

Looks like this isn't skipped anymore so closing