Skip to content

Commit b4b4fde

Browse files
Fixes import to be compatible with RobotFramework 3.0.
Changes Travis settings to install RobotFramework 3.0.
1 parent 5077108 commit b4b4fde

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis_python_dep.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -ev
33
PYTHON_VERSION=`python -c "import sys; print(sys.version[:3])"`
44
if [ "${PYTHON_VERSION}" = "2.6" ]; then
5-
pip install robotframework==2.9.2
5+
pip install robotframework
66
pip install selenium
77
pip install decorator
88
pip install docutils
@@ -16,7 +16,7 @@ elif [ "${PYTHON_VERSION}" = "2.7" ]; then
1616
# pip install future
1717
# pip install mockito
1818
elif [ "${PYTHON_VERSION}" = "3.4" ]; then
19-
pip install robotframework==3.0b1
19+
pip install robotframework
2020
pip install selenium
2121
pip install decorator
2222
pip install docutils

src/Selenium2Library/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import os
2-
from keywords import *
2+
from Selenium2Library.keywords import *
33
from version import VERSION
44
from utils import LibraryListener
55

0 commit comments

Comments
 (0)