Skip to content

Commit 3b56f95

Browse files
committed
use only sudo for running maven test server (remove nice)
1 parent e49fb83 commit 3b56f95

File tree

1 file changed

+1
-1
lines changed
  • java/ql/integration-tests/java/buildless-snapshot-repository

1 file changed

+1
-1
lines changed

java/ql/integration-tests/java/buildless-snapshot-repository/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ def test(codeql, java):
77
command = ["python3", "-m", "http.server", "9427", "-b", "localhost"]
88
if runs_on.github_actions and runs_on.posix:
99
# On GitHub Actions, we try to run the server with higher priority
10-
command = ["sudo", "nice", "-n", "10"] + command
10+
command = ["sudo"] + command
1111
repo_server_process = subprocess.Popen(
1212
command, cwd="repo"
1313
)

0 commit comments

Comments
 (0)