forked from Blazemeter/taurus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
52 lines (45 loc) · 1.33 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Do not build feature branch with open Pull Requests
skip_branch_with_pr: true
environment:
matrix:
- PYTHON: "C:\\Python35"
PYTHON_VERSION: "3.5.x"
PYTHON_ARCH: "64"
NODEJS_VERSION: "6"
- PYTHON: "C:\\Python36"
PYTHON_VERSION: "3.6.x"
PYTHON_ARCH: "64"
NODEJS_VERSION: "6"
- PYTHON: "C:\\Python37"
PYTHON_VERSION: "3.7.x"
PYTHON_ARCH: "64"
NODEJS_VERSION: "7"
- PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7.x"
PYTHON_ARCH: "64"
NODEJS_VERSION: "6"
platform:
- x64
install:
#- choco install firefox --version 67.0.3
- ps: Install-Product node $env:NODEJS_VERSION
- "%PYTHON%\\python.exe -m pip install pip wheel --upgrade"
- "%PYTHON%\\python.exe -m pip install pyyaml==3.12"
- "%PYTHON%\\python.exe -m pip install -r requirements.txt"
- "%PYTHON%\\python.exe -m pip install -r tests/ci/requirements.txt"
- set PATH=C:\Ruby22\bin;%PYTHON%\Scripts\;%PATH%
- gem install rspec
build: off
before_test:
- ruby -v
- gem -v
- rspec --version
- node --version
- locust --version
- ps: Start-Process python tests/resources/httpserver/start.py
test_script:
- "%PYTHON%\\python.exe -m nose tests -v --exclude-dir=tests/resources \
--exclude-dir=tests/ci --with-coverage --cover-inclusive"
after_test:
- "coverage report -m"
- "codecov"