1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-10-18 05:49:03 +00:00
gns3-server/appveyor.yml

23 lines
541 B
YAML
Raw Normal View History

2017-04-18 09:54:10 +00:00
version: '{build}-{branch}'
image: Visual Studio 2022
2017-04-18 09:54:10 +00:00
platform: x64
environment:
2023-10-31 04:48:08 +00:00
PYTHON: "C:\\Python38-x64"
2017-04-18 10:20:04 +00:00
DISTUTILS_USE_SDK: "1"
2017-04-19 08:09:52 +00:00
API_TOKEN:
secure: VEKn4bYH3QO0ixtQW5ni4Enmn8cS1NlZV246ludBDgQ=
2017-04-18 09:54:10 +00:00
install:
- cinst nmap
- "%PYTHON%\\python.exe -m pip install -U pip setuptools" # upgrade pip & setuptools first
2017-04-18 09:54:10 +00:00
- "%PYTHON%\\python.exe -m pip install -r dev-requirements.txt"
- "%PYTHON%\\python.exe -m pip install -r win-requirements.txt"
2017-04-18 09:54:10 +00:00
build: off
test_script:
2017-04-19 08:09:52 +00:00
- "%PYTHON%\\python.exe -m pytest -v"