forked from robotframework/SeleniumLibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
24 lines (24 loc) · 668 Bytes
/
.travis.yml
File metadata and controls
24 lines (24 loc) · 668 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
language: python
sudo: false
python:
- "2.6"
- "2.7"
install:
#- pip install pep8 --use-mirrors
#- pip install pyflakes --use-mirrors
- pip install robotframework
- pip install selenium
- pip install decorator
- pip install docutils
#- "if [[ ${BROWSER} == 'ie' ]]; then pip install ie_only_pkg; fi"
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script:
- "firefox --version"
- "python test/run_tests.py python $BROWSER --noncritical known_issue_-_travisci"
env:
matrix:
- BROWSER=firefox
#- BROWSER=ie # will be added when we have completed SauceLabs CI
#- BROWSER=safari # will be added after #247 merged