Skip to content

Commit

Permalink
move media server binary to root directory
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukas Bommes committed Nov 1, 2024
1 parent 5bb1a9d commit 203e04a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/end_to_end_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,11 @@ def test_end_to_end_mpeg4_part2(self):
def test_end_to_end_rtsp(self):
with tempfile.TemporaryDirectory() as outdir:
print("Setting up end to end test for RTSP")
rtsp_server = subprocess.Popen(os.path.abspath(os.path.join(PROJECT_ROOT, "live555MediaServer")))
media_server_binary = os.path.abspath(os.path.join(PROJECT_ROOT, "live555MediaServer"))
if PROJECT_ROOT:
rtsp_server = subprocess.Popen(media_server_binary, cwd=PROJECT_ROOT)
else:
rtsp_server = subprocess.Popen(media_server_binary)
try:
time.sleep(1)
print("Running extraction for RTSP stream")
Expand Down

0 comments on commit 203e04a

Please # to comment.