forked from holoviz/holoviz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdodo.py
25 lines (21 loc) · 974 Bytes
/
dodo.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import os
if "PYCTDEV_ECOSYSTEM" not in os.environ:
os.environ["PYCTDEV_ECOSYSTEM"] = "conda"
from pyctdev import * # noqa: api
def task_test_user_install_part1():
return {'actions':["conda create -y -n holoviz-tutorial python=3.6"]}
def task_test_user_install_part2_conda():
return {'actions':[
"conda install -y -c pyviz/label/dev holoviz nbsmoke",
"holoviz examples --path=. --force --use-test-data",
# TODO: bokeh sampledata isn't a documented step
"bokeh sampledata",
'pytest --nbsmoke-run -k ".ipynb"']}
def task_test_user_install_part2_pip():
return {'actions':[
"pip install python-snappy", # TODO should rearrange dependencies so this can be installed via an option
"pip install holoviz nbsmoke",
"holoviz examples --path=. --force --use-test-data",
# TODO: bokeh sampledata isn't a documented step
"bokeh sampledata",
'pytest --nbsmoke-run -k ".ipynb"']}