forked from akuchling/jwzthreading
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathappveyor.yml
32 lines (28 loc) · 1.07 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
# Adapted from https://github.com/bsmurphy/PyKrige/blob/master/appveyor.yml
build: false
environment:
global:
# SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
# /E:ON and /V:ON options are not enabled in the batch script intepreter
# See: http://stackoverflow.com/a/13751649/163740
WITH_COMPILER: "cmd /E:ON /V:ON /C .\\appveyor\\run_with_compiler.cmd"
matrix:
- PYTHON_VERSION: 2.7
PYTHON_ARCH: "64"
MINICONDA: C:\Miniconda-x64
- PYTHON_VERSION: 3.5
PYTHON_ARCH: "64"
MINICONDA: C:\Miniconda3-x64
init:
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH% %MINICONDA%"
install:
- "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- conda info -a
# create a conda virtual environement
- "cd C:\\projects\\jwzthreading"
- "conda create -n jwz-env --yes pytest lxml python=%PYTHON_VERSION%"
- activate jwz-env && pip install -e .
test_script:
- activate jwz-env && pytest && cd examples/ && python example_thread_fedora_mailing.py