[java][rb] Remove cruft from old Travis CI environment by cgoldberg · Pull Request #16473 · SeleniumHQ/selenium

User description

💥 What does this PR do?

This PR removes all old references to the Travis CI environment from the codebase, since we no longer use it.

🔧 Implementation Notes

No functional changes to code.

🔄 Types of changes

  • Cleanup (formatting, renaming)
  • CI/Test

PR Type

Other


Description

  • Remove Travis CI environment references from test annotations

  • Delete travis parameter from @Ignore annotation interface

  • Remove isOnTravis() utility method and related conditionals

  • Clean up Travis CI environment variable from Bazel configuration


Diagram Walkthrough

flowchart LR
  A["Travis CI References"] -->|Remove from tests| B["@Ignore Annotations"]
  A -->|Remove utility| C["TestUtilities.java"]
  A -->|Remove from config| D[".bazelrc"]
  A -->|Remove from platform| E["platform.rb"]
  B --> F["Clean test files"]
  C --> G["Delete isOnTravis method"]
  D --> H["Delete TRAVIS env var"]
  E --> I["Delete travis CI detection"]
Loading

File Walkthrough

Relevant files
Cleanup
9 files
ProxySettingTest.java
Remove travis parameter from Ignore annotation                     
+0/-1     
SlowLoadingPageTest.java
Remove travis parameter from Ignore annotation                     
+1/-1     
WindowTest.java
Remove travis parameter from multiple Ignore annotations 
+1/-5     
CombinedInputActionsTest.java
Remove travis parameter from Ignore annotations                   
+0/-3     
ClosureTestStatement.java
Remove isOnTravis conditional and import statement             
+5/-8     
Ignore.java
Remove travis boolean parameter from interface                     
+0/-2     
IgnoreComparator.java
Remove travis condition from ignore logic                               
+1/-2     
TestUtilities.java
Delete isOnTravis utility method                                                 
+0/-4     
platform.rb
Remove Travis CI detection from ci method                               
+0/-2     
Configuration changes
1 files
.bazelrc
Remove TRAVIS environment variable from test config           
+0/-1