We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2886709 commit 7120b4bCopy full SHA for 7120b4b
appveyor.yml
@@ -1,12 +1,16 @@
1
init:
2
-- ECHO %PYTHON%
+- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
3
4
environment:
5
matrix:
6
- PYTHON: C:/Python36-x64
7
8
install:
9
- - ps: (new-object net.webclient).DownloadFile('https://raw.github.com/pypa/pip/master/contrib/get-pip.py', 'C:/get-pip.py')
10
- - "%PYTHON%/python.exe C:/get-pip.py"
11
- - "%PYTHON%/Scripts/pip.exe install pillow==2.9.0"
+ - "%PYTHON%/Scripts/pip.exe install numpy"
+ - "%PYTHON%/Scripts/pip.exe install pandas"
+ - "%PYTHON%/Scripts/pip.exe install scipy"
12
+ - "%PYTHON%/Scripts/pip.exe install matplotlib"
13
+
14
+test_script:
15
+ - "%PYTHON%\python.exe -m unittest discover C:\projects\pythonrobotics\tests"
16
0 commit comments