mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-04-22 03:00:22 -04:00
17 lines
400 B
YAML
17 lines
400 B
YAML
init:
|
|
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
|
|
|
|
environment:
|
|
matrix:
|
|
- PYTHON: C:/Python36-x64
|
|
|
|
install:
|
|
- "%PYTHON%/Scripts/pip.exe install numpy"
|
|
- "%PYTHON%/Scripts/pip.exe install pandas"
|
|
- "%PYTHON%/Scripts/pip.exe install scipy"
|
|
- "%PYTHON%/Scripts/pip.exe install matplotlib"
|
|
|
|
test_script:
|
|
- "%PYTHON%/python.exe -m unittest discover C:/projects/pythonrobotics/tests"
|
|
|