jellyfish/appveyor.yml

36 lines
888 B
YAML
Raw Normal View History

2015-04-22 23:12:55 +00:00
environment:
global:
CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\.run_with_env.cmd"
2015-04-23 04:32:52 +00:00
2015-04-22 23:12:55 +00:00
matrix:
- PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7.9"
PYTHON_ARCH: "32"
2015-04-23 03:33:36 +00:00
- PYTHON: "C:\\Python27-x64"
PYTHON_VERSION: "2.7.9"
PYTHON_ARCH: "64"
2015-04-22 23:12:55 +00:00
- PYTHON: "C:\\Python34"
PYTHON_VERSION: "3.4.3"
PYTHON_ARCH: "32"
2015-04-23 03:33:36 +00:00
- PYTHON: "C:\\Python34-x64"
PYTHON_VERSION: "3.4.3"
PYTHON_ARCH: "64"
2015-04-22 23:12:55 +00:00
install:
2015-04-22 23:21:06 +00:00
- "git submodule update --init --recursive"
2015-04-22 23:12:55 +00:00
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- "python --version"
- "%CMD_IN_ENV% pip install -e ."
2015-04-23 05:17:20 +00:00
- "%CMD_IN_ENV% pip install pytest unicodecsv wheel"
2015-04-22 23:12:55 +00:00
build: false
test_script:
2015-04-23 03:33:36 +00:00
- "%CMD_IN_ENV% py.test -v jellyfish/test.py"
2015-04-23 04:57:15 +00:00
after_test:
- "%CMD_IN_ENV% python setup.py bdist_wheel"
artifacts:
- path: dist\*