Skip to content

Commit

Permalink
Add two customer scenarios case study (#230)
Browse files Browse the repository at this point in the history
  • Loading branch information
heimengqi authored Mar 7, 2020
1 parent bc044ed commit 4eca7bd
Show file tree
Hide file tree
Showing 4 changed files with 1,641 additions and 3 deletions.
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

0 comments on commit 4eca7bd

Please sign in to comment.