Skip to content

Commit

Permalink
[ci] Workaround: Disable Integration Tests Catnapw
Browse files Browse the repository at this point in the history
  • Loading branch information
ppenna committed Nov 27, 2023
1 parent af79012 commit addca61
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tools/demikernel_ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -468,8 +468,10 @@ def run_pipeline(
if status["checkout"] and status["compile"]:
status["unit_tests"] = job_test_unit_rust_windows(repository, libos, is_debug, server, client,
is_sudo, config_path, log_directory)
status["integration_tests"] = job_test_integration_tcp_rust_windows(
repository, libos, is_debug, server, client, server_addr, client_addr, is_sudo, config_path, log_directory)
# FIXME: https://github.com/microsoft/demikernel/issues/1030
if False:
status["integration_tests"] = job_test_integration_tcp_rust_windows(
repository, libos, is_debug, server, client, server_addr, client_addr, is_sudo, config_path, log_directory)

# STEP 4: Run system tests.
if test_system:
Expand Down

0 comments on commit addca61

Please sign in to comment.