You've already forked python-fido2
mirror of
https://github.com/solokeys/python-fido2.git
synced 2026-03-11 17:13:23 -07:00
28 lines
511 B
YAML
28 lines
511 B
YAML
# appveyor.yml
|
|
|
|
# Building, testing and deployment for Windows
|
|
|
|
# Syntax for this file:
|
|
# https://www.appveyor.com/docs/appveyor-yml
|
|
|
|
environment:
|
|
|
|
matrix:
|
|
- PYTHON: "C:\\Python27"
|
|
- PYTHON: "C:\\Python27-x64"
|
|
- PYTHON: "C:\\Python34"
|
|
- PYTHON: "C:\\Python34-x64"
|
|
- PYTHON: "C:\\Python35"
|
|
- PYTHON: "C:\\Python35-x64"
|
|
- PYTHON: "C:\\Python36"
|
|
- PYTHON: "C:\\Python36-x64"
|
|
|
|
matrix:
|
|
fast_finish: false
|
|
|
|
build_script:
|
|
- pip install -e .
|
|
|
|
test_script:
|
|
- python setup.py test
|