forked from LCA-ActivityBrowser/activity-browser
-
Notifications
You must be signed in to change notification settings - Fork 2
/
appveyor.yml
28 lines (25 loc) · 850 Bytes
/
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
# modified from https://github.com/haasad/PyPardisoProject
build: false
environment:
matrix:
- JOB: "Python 3.6, 64bit"
PYTHON: "C:\\Python36_64"
PYTHON_VERSION: "3.6"
PYTHON_ARCH: "64"
CONDA_PY: "36"
CONDA_ENV_PY: "3.6"
install:
- "powershell .\\ci\\appveyor\\install_miniconda.ps1"
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- "conda update conda"
- "conda config --set always_yes yes --set changeps1 no"
- "conda config --append channels conda-forge"
- "conda config --append channels cmutel"
- "conda config --append channels haasad"
- "conda build .\\ci\\travis\\recipe"
- "conda create -n test_env python=%CONDA_ENV_PY%"
- "activate test_env"
- "conda install --use-local activity-browser-dev"
- 'conda install -q "pytest<3.5" pytest-qt pytest-mock'
test_script:
- "py.test"