appveyor: fix nose -> pytest

This commit is contained in:
Mathieu Virbel 2019-02-25 11:55:51 +01:00 committed by Mathieu Virbel
parent 28aaafab3a
commit a6fb95f761
1 changed files with 3 additions and 3 deletions

View File

@ -151,8 +151,8 @@ build_script:
python setup.py sdist --formats=gztar -d "$env:WHEEL_DIR"
Check-Error
}
pip install mock cython pygments docutils nose kivy.deps.glew_dev kivy.deps.glew kivy.deps.gstreamer_dev kivy.deps.sdl2_dev kivy.deps.sdl2
pip install mock cython pygments docutils pytest kivy.deps.glew_dev kivy.deps.glew kivy.deps.gstreamer_dev kivy.deps.sdl2_dev kivy.deps.sdl2
pip --no-cache-dir install kivy.deps.gstreamer
@ -239,6 +239,6 @@ test_script:
} else {
$env:KIVY_GL_BACKEND = "mock"
}
python -m nose.core kivy/tests
python -m pytest kivy/tests
Check-Error
}