forked from Blazemeter/taurus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
41 lines (37 loc) · 918 Bytes
/
.travis.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
sudo: false
language: python
matrix:
include:
- os: linux
python: 2.7
- os: linux
python: 3.3
- os: linux
python: 3.4
- os: linux
python: 3.5
# - os: osx
# language: generic
addons:
firefox: "54.0"
apt:
packages:
- oracle-java8-set-default
before_install: |
if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
sh -e Xvfb :99 -ac -screen 0 1024x768x8
else
export DISPLAY=:99.0
sh -e /etc/init.d/xvfb start
fi
install:
- nvm install 4.2
- nvm use 4.2
- gem install rspec
- pip install colorlog jsonpath-rw pyyaml psutil lxml cssselect urwid six selenium progressbar33 locustio pyvirtualdisplay astunparse ipaddress
- pip install git+https://github.com/Blazemeter/apiritif.git@master
- pip install --upgrade codecov nose nose-exclude
script: coverage run --source=. `which nosetests` tests --exclude-dir=tests/resources
after_success:
- coverage report -m
- codecov