Skip to content

Commit cf13433

Browse files
committed
Java: Add comments to tests that spawn an HTTP/S server
1 parent 1b1367e commit cf13433

File tree

3 files changed

+3
-0
lines changed
  • java/ql/integration-tests/all-platforms/java
    • buildless-dependency-different-repository
    • buildless-inherit-trust-store
    • buildless-snapshot-repository

3 files changed

+3
-0
lines changed

java/ql/integration-tests/all-platforms/java/buildless-dependency-different-repository/test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
from buildless_test_utils import *
55
import subprocess
66

7+
# Each of these serves the "repo" and "repo2" directories on http://localhost:924[89]
78
repo_server_process = subprocess.Popen(["python3", "-m", "http.server", "9428"], cwd = "repo")
89
repo_server_process2 = subprocess.Popen(["python3", "-m", "http.server", "9429"], cwd = "repo2")
910

java/ql/integration-tests/all-platforms/java/buildless-inherit-trust-store/test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
import subprocess
77
import os.path
88

9+
# This serves the "repo" directory on https://locahost:4443
910
repo_server_process = subprocess.Popen(["python3", "../server.py"], cwd = "repo")
1011

1112
mypath = os.path.abspath(os.path.dirname(__file__))

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
from buildless_test_utils import *
55
import subprocess
66

7+
# This serves the "repo" directory on http://localhost:9427
78
repo_server_process = subprocess.Popen(["python3", "-m", "http.server", "9427"], cwd = "repo")
89

910
try:

0 commit comments

Comments
 (0)