-
-
Notifications
You must be signed in to change notification settings - Fork 18.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TST: test that we work in downstream packages
- Loading branch information
Showing
4 changed files
with
73 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
xarray | ||
geopandas | ||
dask | ||
seaborn | ||
pandas_gbq | ||
pandas_datareader | ||
statsmodels |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
|
||
source activate pandas | ||
|
||
echo "install 27" | ||
|
||
conda install -n pandas -c conda-forge pyarrow |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
""" | ||
Testing that we work in the downstream packages | ||
""" | ||
import pytest | ||
from pandas import DataFrame | ||
|
||
|
||
@pytest.fixture | ||
def df(): | ||
return DataFrame({'A': [1, 2, 3]}) | ||
|
||
|
||
def test_dask(df): | ||
|
||
dask = pytest.importorskip('dask') # noqa | ||
|
||
import dask.dataframe as dd | ||
|
||
ddf = dd.from_pandas(df) | ||
assert ddf.A is not None | ||
assert ddf.compute() | ||
|
||
|
||
def test_xarray(df): | ||
|
||
xarray = pytest.importorskip('xarray') # noqa | ||
|
||
assert df.to_xarray() is not None | ||
|
||
|
||
def test_statsmodels(df): | ||
|
||
statsmodels = pytest.importorskip('statsmodels') # noqa | ||
|
||
|
||
def test_seaborn(df): | ||
|
||
seaborn = pytest.importorskip('seaborn') # noqa | ||
|
||
|
||
def test_pandas_gbq(df): | ||
|
||
pandas_gbq = pytest.importorskip('pandas-gbq') # noqa | ||
|
||
|
||
def test_pandas_datareader(df): | ||
|
||
pandas_datareader = pytest.importorskip('pandas-datareader') # noqa | ||
|
||
|
||
def test_geopandas(df): | ||
|
||
geopandas = pytest.importorskip('geopandas') # noqa | ||
|
||
|
||
def test_pyarrow(df): | ||
|
||
pyarrow = pytest.importorskip('pyarrow') # noqa |