@@ -81,25 +81,25 @@ deps=
81
81
basepython ={env:PLOTLY_TOX_PYTHON_27:}
82
82
commands =
83
83
python --version
84
- nosetests {posargs} -x plotly/tests/test_core
84
+ pytest {posargs} -x plotly/tests/test_core
85
85
86
86
[testenv:py35-core]
87
87
basepython ={env:PLOTLY_TOX_PYTHON_35:}
88
88
commands =
89
89
python --version
90
- nosetests {posargs} -x plotly/tests/test_core
90
+ pytest {posargs} -x plotly/tests/test_core
91
91
92
92
[testenv:py36-core]
93
93
basepython ={env:PLOTLY_TOX_PYTHON_36:}
94
94
commands =
95
95
python --version
96
- nosetests {posargs} -x plotly/tests/test_core
96
+ pytest {posargs} -x plotly/tests/test_core
97
97
98
98
[testenv:py37-core]
99
99
basepython ={env:PLOTLY_TOX_PYTHON_37:}
100
100
commands =
101
101
python --version
102
- nosetests {posargs} -x plotly/tests/test_core
102
+ pytest {posargs} -x plotly/tests/test_core
103
103
104
104
; OPTIONAL ENVIRONMENTS
105
105
; [testenv:py27-optional]
@@ -116,34 +116,34 @@ commands=
116
116
basepython ={env:PLOTLY_TOX_PYTHON_27:}
117
117
commands =
118
118
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
121
121
pytest _plotly_utils/tests/
122
122
pytest plotly/tests/test_io
123
123
124
124
[testenv:py35-optional]
125
125
basepython ={env:PLOTLY_TOX_PYTHON_35:}
126
126
commands =
127
127
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
130
130
pytest _plotly_utils/tests/
131
131
pytest plotly/tests/test_io
132
132
133
133
[testenv:py36-optional]
134
134
basepython ={env:PLOTLY_TOX_PYTHON_36:}
135
135
commands =
136
136
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
139
139
pytest _plotly_utils/tests/
140
140
pytest plotly/tests/test_io
141
141
142
142
[testenv:py37-optional]
143
143
basepython ={env:PLOTLY_TOX_PYTHON_37:}
144
144
commands =
145
145
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
148
148
pytest _plotly_utils/tests/
149
149
pytest plotly/tests/test_io
0 commit comments