forked from Blazemeter/taurus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
35 lines (29 loc) · 854 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
image:
- Visual Studio 2019
# Do not build feature branch with open Pull Requests
skip_branch_with_pr: true
environment:
matrix:
- PYTHON: "C:\\Python38"
PYTHON_VERSION: "3.8.x"
PYTHON_ARCH: "64"
- PYTHON: "C:\\Python39"
PYTHON_VERSION: "3.9.x"
PYTHON_ARCH: "64"
platform:
- x64
install:
- "%PYTHON%\\python.exe -m pip install pip wheel Cython --upgrade"
- "%PYTHON%\\python.exe -m pip install -r requirements.txt -r tests/ci/requirements.txt"
- set PATH=C:\Ruby22\bin;%PYTHON%\Scripts\;%PATH%
- set SSL_CERT_FILE=C:\\ruby24-x64\\ssl\\cert.pem
- gem install rspec
build: off
before_test:
- ruby -v
- gem -v
- rspec --version
- locust --version
- ps: Start-Process $env:PYTHON\\python.exe tests/resources/httpserver/start.py
test_script:
- "%PYTHON%\\python.exe -m nose2 -s tests/unit -v"