2017-07-27 01:40:32 +00:00
|
|
|
version: 0.2.{build}
|
|
|
|
environment:
|
|
|
|
TARGET: x86_64-pc-windows-msvc
|
2019-05-12 13:20:17 +00:00
|
|
|
RUST_BACKTRACE: 1
|
2017-07-29 05:45:03 +00:00
|
|
|
matrix:
|
|
|
|
- PYTHON: "C:/Python35-x64"
|
|
|
|
- PYTHON: "C:/Python36-x64"
|
|
|
|
|
2017-07-27 01:40:32 +00:00
|
|
|
install:
|
2019-05-12 13:20:17 +00:00
|
|
|
- python -V
|
|
|
|
- ps: .\ci\appveyor\setup.ps1
|
2017-07-27 01:40:32 +00:00
|
|
|
- call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" amd64
|
|
|
|
- rustc -V
|
|
|
|
- cargo -V
|
2017-07-29 05:45:03 +00:00
|
|
|
|
2017-07-27 01:42:30 +00:00
|
|
|
build_script:
|
2019-03-22 13:07:33 +00:00
|
|
|
- cargo build --verbose
|
2017-07-29 05:45:03 +00:00
|
|
|
|
2019-05-12 13:20:17 +00:00
|
|
|
before_test:
|
|
|
|
- python -m pip install -U pip setuptools
|
|
|
|
- pip install setuptools-rust pytest pytest-benchmark tox tox-venv
|
|
|
|
|
2017-07-27 01:40:32 +00:00
|
|
|
test_script:
|
2019-05-12 13:20:17 +00:00
|
|
|
- ps: .\ci\appveyor\test.ps1
|