mirror of
https://github.com/elastic/eland.git
synced 2025-07-11 00:02:14 +08:00
18 lines
402 B
Python
18 lines
402 B
Python
import numpy as np
|
|
import pandas as pd
|
|
import pytest
|
|
|
|
import eland as ed
|
|
|
|
# Fix console size for consistent test results
|
|
pd.set_option('display.max_rows', 10)
|
|
pd.set_option('display.max_columns', 5)
|
|
pd.set_option('display.width', 100)
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def add_imports(doctest_namespace):
|
|
doctest_namespace["np"] = np
|
|
doctest_namespace["pd"] = pd
|
|
doctest_namespace["ed"] = ed
|