Skip to content

Commit

Permalink
Avoid killing the stream server
Browse files Browse the repository at this point in the history
  • Loading branch information
waliid committed Dec 10, 2024
1 parent ec0f27b commit bebe19b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,15 @@ test-ios: install-pkgx install-bundler
@echo "Running unit tests..."
@Scripts/test-streams.sh -s
@pkgx bundle exec fastlane test_ios
@Scripts/test-streams.sh -k
# @Scripts/test-streams.sh -k
@echo "... done.\n"

.PHONY: test-tvos
test-tvos: install-pkgx install-bundler
@echo "Running unit tests..."
@Scripts/test-streams.sh -s
@pkgx bundle exec fastlane test_tvos
@Scripts/test-streams.sh -k
# @Scripts/test-streams.sh -k
@echo "... done.\n"

.PHONY: check-quality
Expand Down
2 changes: 1 addition & 1 deletion Scripts/test-streams.sh
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ function generate_packaged_streams {
}

function serve_directory {
python -m http.server 8123 --directory "$1" > /dev/null 2>&1 &
python -m http.server 8123 --directory "$1" &
}

function kill_test_streams {
Expand Down

0 comments on commit bebe19b

Please sign in to comment.