-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve tests efficiency through the use of fixtures to load the data
- Loading branch information
1 parent
c338616
commit 22fd308
Showing
5 changed files
with
177 additions
and
168 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import pytest | ||
from statsmodels.datasets import co2 | ||
|
||
|
||
@pytest.fixture(scope="module") | ||
def co2_daily(): | ||
return co2.load().data.resample("D").mean().ffill() | ||
|
||
|
||
@pytest.fixture(scope="module") | ||
def co2_weekly(): | ||
return co2.load().data.resample("W").mean().ffill() | ||
|
||
|
||
@pytest.fixture(scope="module") | ||
def co2_monthly(): | ||
return co2.load().data.resample("ME").mean().ffill() |
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
Oops, something went wrong.