Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add two customer scenarios case study #230

Merged
merged 22 commits into from
Mar 7, 2020
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions econml/tests/test_notebooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@
import traitlets

_nbdir = os.path.join(os.path.dirname(__file__), '..', '..', 'notebooks')
_notebooks = [path
for path in os.listdir(_nbdir)
if path.endswith('.ipynb')]
_nbsubdirs = ['.', 'CustomerScenarios'] # TODO: add AutoML notebooks
_notebooks = [
os.path.join(subdir, path) for subdir
in _nbsubdirs for path in os.listdir(os.path.join(_nbdir, subdir)) if path.endswith('.ipynb')]


@pytest.mark.parametrize("file", _notebooks)
Expand Down
Loading