mirror of
https://github.com/morgan9e/noiseprotocol
synced 2026-04-14 00:14:05 +09:00
23 lines
503 B
YAML
Executable File
23 lines
503 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"
|
|
|
|
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\*
|