@@ -81,25 +81,25 @@ deps=
8181basepython ={env:PLOTLY_TOX_PYTHON_27:}
8282commands =
8383 python --version
84- nosetests {posargs} -x plotly/tests/test_core
84+ pytest {posargs} -x plotly/tests/test_core
8585
8686[testenv:py35-core]
8787basepython ={env:PLOTLY_TOX_PYTHON_35:}
8888commands =
8989 python --version
90- nosetests {posargs} -x plotly/tests/test_core
90+ pytest {posargs} -x plotly/tests/test_core
9191
9292[testenv:py36-core]
9393basepython ={env:PLOTLY_TOX_PYTHON_36:}
9494commands =
9595 python --version
96- nosetests {posargs} -x plotly/tests/test_core
96+ pytest {posargs} -x plotly/tests/test_core
9797
9898[testenv:py37-core]
9999basepython ={env:PLOTLY_TOX_PYTHON_37:}
100100commands =
101101 python --version
102- nosetests {posargs} -x plotly/tests/test_core
102+ pytest {posargs} -x plotly/tests/test_core
103103
104104; OPTIONAL ENVIRONMENTS
105105; [testenv:py27-optional]
@@ -116,34 +116,34 @@ commands=
116116basepython ={env:PLOTLY_TOX_PYTHON_27:}
117117commands =
118118 python --version
119- nosetests {posargs} -x plotly/tests/test_core
120- nosetests {posargs} -x plotly/tests/test_optional
119+ pytest {posargs} -x plotly/tests/test_core
120+ pytest {posargs} -x plotly/tests/test_optional
121121 pytest _plotly_utils/tests/
122122 pytest plotly/tests/test_io
123123
124124[testenv:py35-optional]
125125basepython ={env:PLOTLY_TOX_PYTHON_35:}
126126commands =
127127 python --version
128- nosetests {posargs} -x plotly/tests/test_core
129- nosetests {posargs} -x plotly/tests/test_optional
128+ pytest {posargs} -x plotly/tests/test_core
129+ pytest {posargs} -x plotly/tests/test_optional
130130 pytest _plotly_utils/tests/
131131 pytest plotly/tests/test_io
132132
133133[testenv:py36-optional]
134134basepython ={env:PLOTLY_TOX_PYTHON_36:}
135135commands =
136136 python --version
137- nosetests {posargs} -x plotly/tests/test_core
138- nosetests {posargs} -x plotly/tests/test_optional
137+ pytest {posargs} -x plotly/tests/test_core
138+ pytest {posargs} -x plotly/tests/test_optional
139139 pytest _plotly_utils/tests/
140140 pytest plotly/tests/test_io
141141
142142[testenv:py37-optional]
143143basepython ={env:PLOTLY_TOX_PYTHON_37:}
144144commands =
145145 python --version
146- nosetests {posargs} -x plotly/tests/test_core
147- nosetests {posargs} -x plotly/tests/test_optional
146+ pytest {posargs} -x plotly/tests/test_core
147+ pytest {posargs} -x plotly/tests/test_optional
148148 pytest _plotly_utils/tests/
149149 pytest plotly/tests/test_io
0 commit comments