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