We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3ed73b4 + 0ac0bc5 commit 77d9479Copy full SHA for 77d9479
1 file changed
tests/unit/test_console.py
@@ -1,14 +1,14 @@
1
import os
2
3
import pytest
4
+import requests
5
6
from ydata_profiling.controller import console
7
from ydata_profiling.utils.paths import get_config
8
-import requests
9
-
10
NASA_URL = "https://data.nasa.gov/docs/legacy/meteorite_landings/Meteorite_Landings.csv"
11
+
12
@pytest.fixture
13
def console_data(get_data_file):
14
try:
@@ -18,6 +18,7 @@ def console_data(get_data_file):
18
except Exception as e:
19
pytest.skip(f"Skipping console tests: cannot fetch meteorites.csv ({e})")
20
21
22
@pytest.mark.skipif(os.name == "nt", reason="multiprocessing+pytest broken on Windows")
23
def test_console_multiprocessing(console_data, test_output_dir):
24
report = test_output_dir / "test_samples.html"
0 commit comments