Files
noiseprotocol/appveyor.yml
Piotr Lizonczyk 08d0859a79 Enable OS X build. Fix Windows build.
Update README and trove classifiers in setup.py
2017-11-03 23:37:02 +01:00

23 lines
509 B
YAML
Executable File

environment:
matrix:
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36-x64"
install:
- "%PYTHON%\\python.exe -m pip install -r requirements.txt"
- "%PYTHON%\\python.exe -m pip install pytest wheel"
build: off
test_script:
- "%PYTHON%\\python.exe -m pytest"
after_test:
- "%PYTHON%\\python.exe setup.py bdist_wheel"
artifacts:
# bdist_wheel puts your built wheel in the dist directory
- path: dist\*