()
| 202 | @pytest.mark.network |
| 203 | @pytest.mark.skip(reason="Flaky test.") |
| 204 | def test_bag(): |
| 205 | # This test pulls from different hosts |
| 206 | urls = [ |
| 207 | "https://raw.githubusercontent.com/weierophinney/pastebin/" |
| 208 | "master/public/js-src/dojox/data/tests/stores/patterns.csv", |
| 209 | "https://en.wikipedia.org", |
| 210 | ] |
| 211 | b = db.read_text(urls) |
| 212 | assert b.npartitions == 2 |
| 213 | b.compute() |
| 214 | |
| 215 | |
| 216 | @pytest.mark.network |
nothing calls this directly
no test coverage detected
searching dependent graphs…