Skip to content

Commit

Permalink
chore: exclude requirements test on RBE
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeagle committed Feb 7, 2023
1 parent 11c9153 commit a3fc571
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .bazelci/presubmit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ tasks:
name: Test on RBE
platform: rbe_ubuntu1604
test_flags:
- "--test_tag_filters=-integration-test,-acceptance-test"
- "--test_tag_filters=-integration-test,-acceptance-test,-fix-rbe"

integration_test_build_file_generation_ubuntu:
<<: *reusable_build_test_all
Expand Down
10 changes: 8 additions & 2 deletions tools/publish/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ load("//python:pip.bzl", "compile_pip_requirements")
compile_pip_requirements(
name = "requirements",
requirements_windows = "requirements_windows.txt",
# This fails on RBE and MacOS right now, and we don't need coverage there
# tags = ["manual"],
# This fails on RBE right now, and we don't need coverage there:
# WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None))
# after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.HTTPSConnection object at 0x7f3784e08110>:
# Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /simple/twine/
#
# ERROR: Could not find a version that satisfies the requirement twine==4.0.2
# (from -r tools/publish/requirements.in (line 1)) (from versions: none)
tags = ["fix-rbe"],
)

0 comments on commit a3fc571

Please sign in to comment.