forked from srivishnu-ayyagari-zz/python-robot-framework
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
11 lines (8 loc) · 874 Bytes
/
Makefile
File metadata and controls
11 lines (8 loc) · 874 Bytes
1
2
3
4
5
6
7
8
9
10
11
run_all_in_parallel:
make -j test_Windows_10_edge_18 test_OX_X_10_11_firefox_59 test_Windows_10_chrome_68
test_Windows_10_edge_18:
robot --variable platform:"Windows 10" --variable browserName:MicrosoftEdge --variable version:18.0 --variable ROBOT_BROWSER:chrome --variable visual:false --variable network:false --variable console:false Tests/sample_test.robot
test_OX_X_10_11_firefox_59:
robot --variable platform:"macOS Sierra" --variable browserName:firefox --variable version:59.0 --variable ROBOT_BROWSER:firefox --variable visual:false --variable network:false --variable console:false Tests/sample_test.robot
test_Windows_10_chrome_68:
robot --variable platform:"Windows 10" --variable browserName:chrome --variable version:68.0 --variable ROBOT_BROWSER:chrome --variable visual:false --variable network:false --variable console:false Tests/sample_test.robot