mirror of
https://github.com/pyecharts/pyecharts.git
synced 2025-12-08 20:59:23 +00:00
22 lines
673 B
YAML
22 lines
673 B
YAML
environment:
|
|
|
|
matrix:
|
|
- PYTHON: "C:\\Python27-x64"
|
|
PYTHON_VERSION: "2.7"
|
|
- PYTHON: "C:\\Python35-x64"
|
|
PYTHON_VERSION: "3.5"
|
|
- PYTHON: "C:\\Python36-x64"
|
|
PYTHON_VERSION: "3.6"
|
|
- PYTHON: "C:\\Python37-x64"
|
|
PYTHON_VERSION: "3.7"
|
|
|
|
install:
|
|
- "%PYTHON%\\python.exe -m pip install -r requirements.txt"
|
|
- cd test
|
|
- "%PYTHON%\\python.exe -m pip install -r requirements.txt"
|
|
- "%PYTHON%\\python.exe -m pip install mock"
|
|
build: off
|
|
|
|
test_script:
|
|
"%PYTHON%/Scripts/nosetests --with-coverage --cover-package pyecharts --cover-package test && cd .. && %PYTHON%/Scripts/flake8 --exclude docs --builtins=unicode,xrange,long,basestring"
|