27 lines
629 B
YAML
27 lines
629 B
YAML
shallow_clone: true
|
|
|
|
platform:
|
|
- x64
|
|
|
|
environment:
|
|
matrix:
|
|
- PYTHON_VERSION: 3.6
|
|
MINICONDA_DIRNAME: C:\Miniconda36-x64
|
|
|
|
install:
|
|
- set "PATH=%MINICONDA_DIRNAME%;%MINICONDA_DIRNAME%\\Scripts;%PATH%"
|
|
- conda config --set always_yes yes
|
|
- conda update -q conda
|
|
- conda create --quiet --name cqtest -c cadquery -c conda-forge python=%PYTHON_VERSION% freecad=0.17 python=3.6 pyparsing mock coverage codecov
|
|
- activate cqtest
|
|
- python setup.py install
|
|
|
|
build: false
|
|
|
|
test_script:
|
|
- coverage run runtests.py
|
|
|
|
on_success:
|
|
- coverage xml
|
|
- codecov -X gcov --file coverage.xml
|