forked from glotzerlab/freud
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
23 lines (23 loc) · 734 Bytes
/
Copy pathappveyor.yml
File metadata and controls
23 lines (23 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
version: build-{build}
image:
- Visual Studio 2015
platform:
- x64
environment:
matrix:
- MINICONDA: C:\Miniconda3-x64
init:
- "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%MINICONDA%\\Library\\bin;%PATH%"
build_script:
- git submodule update --init
- conda config --set always_yes yes --set changeps1 no
- conda config --add channels conda-forge
- conda update -q conda
- conda install pip cython garnett gsd matplotlib mdanalysis numpy rowan scipy sympy tbb tbb-devel
- "set TBB_INCLUDE=%MINICONDA%\\Library\\include"
- "set TBB_LINK=%MINICONDA%\\Library\\lib"
- python --version
- del freud\*.cpp
- python setup.py build_ext --inplace --ENABLE-CYTHON
test_script:
- python -m unittest discover tests -v