forked from CadQuery/cadquery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
41 lines (33 loc) · 1.08 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
shallow_clone: true
platform:
- x64
environment:
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
MINICONDA_DIRNAME: C:\Miniconda38-x64
- APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu
OS: Linux
- APPVEYOR_BUILD_WORKER_IMAGE: macOS
OS: MacOSX
ANACONDA_TOKEN:
secure: $(anaconda_token)
init:
- cmd: set "PATH=%MINICONDA_DIRNAME%;%MINICONDA_DIRNAME%\\Scripts;%PATH%"
- sh: curl -sL https://repo.anaconda.com/miniconda/Miniconda3-latest-$OS-x86_64.sh > miniconda.sh
- sh: bash miniconda.sh -b -p $HOME/miniconda;
- sh: export PATH="$HOME/miniconda/bin:$HOME/miniconda/lib:$PATH";
- sh: source $HOME/miniconda/bin/activate
install:
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- cmd: conda init cmd.exe
- conda env create -f environment.yml
- conda activate cadquery
- pip install git+https://github.com/CadQuery/[email protected]
build: false
test_script:
- black . --diff --check
- mypy cadquery
- pytest -v --cov
on_success:
- codecov