Skip to content

Commit

Permalink
Fix for building selenium project
Browse files Browse the repository at this point in the history
In case the user is trying to build the entire project using `./go build`
or trying to build the standalone-server. The builds were failing with
the below exception :

BUILD FAILED: The rule //java/client/test/org/openqa/selenium/remote:common-tests
could not be found.

This was caused because the tasks in the Rakefile were still referring to
"common-tests" task instead of the new "small-tests"
  • Loading branch information
rookieInTraining authored and p0deje committed May 4, 2019
1 parent 7dc63b1 commit ae0b885
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,7 @@ task :tests => [
"//java/client/test/org/openqa/selenium/opera:opera",
"//java/client/test/org/openqa/selenium/support:small-tests",
"//java/client/test/org/openqa/selenium/support:large-tests",
"//java/client/test/org/openqa/selenium/remote:common-tests",
"//java/client/test/org/openqa/selenium/remote:client-tests",
"//java/client/test/org/openqa/selenium/remote:small-tests",
"//java/server/test/org/openqa/selenium/remote/server/log:test",
"//java/server/test/org/openqa/selenium/remote/server:small-tests",
]
Expand Down

0 comments on commit ae0b885

Please sign in to comment.